From: Jouni Malinen Date: Tue, 16 Oct 2018 09:30:57 +0000 (+0300) Subject: tests: WMM advertisement parameter change X-Git-Tag: hostap_2_7~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02342a2a2a243044f4df324dae0fd7a759d690cf;p=thirdparty%2Fhostap.git tests: WMM advertisement parameter change Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_params.py b/tests/hwsim/test_ap_params.py index b0ce0d191..07088f823 100644 --- a/tests/hwsim/test_ap_params.py +++ b/tests/hwsim/test_ap_params.py @@ -514,6 +514,10 @@ def test_ap_tx_queue_params_invalid(dev, apdev): params['wmm_ac_bk_acm'] = "0" hapd = hostapd.add_ap(apdev[0], params) + + # Valid WMM change + hapd.set("wmm_ac_be_cwmin", "3") + # "Invalid TX queue cwMin/cwMax values. cwMin(7) greater than cwMax(3)" if "FAIL" not in hapd.request('SET tx_queue_data2_cwmax 3'): raise Exception("TX cwMax < cwMin accepted")