From: Jouni Malinen Date: Fri, 4 May 2018 17:19:17 +0000 (+0300) Subject: tests: wpa_supplicant STATUS output and ieee80211ac=1 X-Git-Tag: hostap_2_7~352 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f98fdc4e4bff95eb396a01c5c8e260b5a58155d0;p=thirdparty%2Fhostap.git tests: wpa_supplicant STATUS output and ieee80211ac=1 Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_vht.py b/tests/hwsim/test_ap_vht.py index a7525927f..40256a194 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":