diff mbox series

[6/9] tests: Fix ap_acs_vht160 false negative by using common finalizer ap_acs_vht160 fails with this message.

Message ID 20190627054452.6547-6-masashi.honma@gmail.com
State Accepted
Headers show
Series [1/9] tests: Fix rrm_beacon_req_passive_scan_vht false negative by using common finalizer rrm_beacon_req_passive_scan_vht fails with this message. | expand

Commit Message

Masashi Honma June 27, 2019, 5:44 a.m. UTC
---------------
wlan0: Country code not reset back to 00: is ZA
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 | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/tests/hwsim/test_ap_acs.py b/tests/hwsim/test_ap_acs.py
index 14ed65b0d..43a34dd78 100644
--- a/tests/hwsim/test_ap_acs.py
+++ b/tests/hwsim/test_ap_acs.py
@@ -272,12 +272,7 @@  def test_ap_acs_vht160(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_vht160_scan_disable(dev, apdev):
     """Automatic channel selection for VHT160 and DISABLE during scan"""