From: Jouni Malinen Date: Sun, 23 Dec 2018 10:11:53 +0000 (+0200) Subject: tests: HT STBC overrides X-Git-Tag: hostap_2_8~727 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15b7cc5199ec6e3c0484ca26e74fcf84c93b2931;p=thirdparty%2Fhostap.git tests: HT STBC overrides Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_ht.py b/tests/hwsim/test_ap_ht.py index f3dc7eec6..a46ff0806 100644 --- a/tests/hwsim/test_ap_ht.py +++ b/tests/hwsim/test_ap_ht.py @@ -850,6 +850,17 @@ def test_ap_require_ht(dev, apdev): ampdu_density="1", disable_ht40="1", disable_sgi="1", disable_ldpc="1", rx_stbc="2", tx_stbc="1") +def test_ap_ht_stbc(dev, apdev): + """HT STBC overrides""" + params = { "ssid": "ht" } + hapd = hostapd.add_ap(apdev[0], params) + + dev[0].connect("ht", key_mgmt="NONE", scan_freq="2412") + dev[1].connect("ht", key_mgmt="NONE", scan_freq="2412", + rx_stbc="0", tx_stbc="0") + dev[2].connect("ht", key_mgmt="NONE", scan_freq="2412", + rx_stbc="1", tx_stbc="1") + @remote_compatible def test_ap_require_ht_limited_rates(dev, apdev): """Require HT with limited supported rates"""