diff options
author | Jouni Malinen <jouni@codeaurora.org> | 2018-05-04 17:19:17 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2018-05-04 17:19:17 (GMT) |
commit | f98fdc4e4bff95eb396a01c5c8e260b5a58155d0 (patch) | |
tree | 9b2085ce43471d81a8aed6497f966c2e74594432 | |
parent | d7f038ded2cf56d6e75ca8aab00686e855389884 (diff) | |
download | hostap-f98fdc4e4bff95eb396a01c5c8e260b5a58155d0.zip hostap-f98fdc4e4bff95eb396a01c5c8e260b5a58155d0.tar.gz hostap-f98fdc4e4bff95eb396a01c5c8e260b5a58155d0.tar.bz2 |
tests: wpa_supplicant STATUS output and ieee80211ac=1
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
-rw-r--r-- | tests/hwsim/test_ap_vht.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/hwsim/test_ap_vht.py b/tests/hwsim/test_ap_vht.py index a752592..40256a1 100644 --- a/tests/hwsim/test_ap_vht.py +++ b/tests/hwsim/test_ap_vht.py @@ -50,6 +50,9 @@ def test_ap_vht80(dev, apdev): est = dev[0].get_bss(bssid)['est_throughput'] if est != "390001": raise Exception("Unexpected BSS est_throughput: " + est) + status = dev[0].get_status() + if status["ieee80211ac"] != "1": + raise Exception("Unexpected STATUS ieee80211ac value (STA)") status = hapd.get_status() logger.info("hostapd STATUS: " + str(status)) if status["ieee80211n"] != "1": |