]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix ap_acs_5ghz false negative by using common finalizer
authorMasashi Honma <masashi.honma@gmail.com>
Thu, 27 Jun 2019 05:44:45 +0000 (14:44 +0900)
committerJouni Malinen <j@w1.fi>
Tue, 30 Jul 2019 20:46:26 +0000 (23:46 +0300)
ap_acs_5ghz fails with this message:

---------------
wlan0: Country code not reset back to 00: is US
wlan0: Country code cleared back to 00
---------------

hostap commit 91b6eba7732354ed3dfe0aa9715dc4c0746e3336
'Move MAC address randomization enable/disable to helper functions'.

wireless-testing commit 66c112cbd1d44d05322bb4eef908c82a68adbb5e
tag: wt-2019-06-26.

This patch fixes the issue.

Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
tests/hwsim/test_ap_acs.py

index db0828467324e4cf12137262642ca02ce8eed38e..99b786e3d9e46e6468f2713633ffb3a3e78b82a5 100644 (file)
@@ -160,12 +160,7 @@ def test_ap_acs_5ghz(dev, apdev):
         dev[0].connect("test-acs", psk="12345678", scan_freq=freq)
         dev[0].wait_regdom(country_ie=True)
     finally:
-        if hapd:
-            hapd.request("DISABLE")
-        dev[0].disconnect_and_stop_scan()
-        hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00'])
-        dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=0.5)
-        dev[0].flush_scan_cache()
+        clear_regdom(hapd, dev)
 
 def test_ap_acs_5ghz_40mhz(dev, apdev):
     """Automatic channel selection on 5 GHz for 40 MHz channel"""