]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix p2p_channel_5ghz_165_169_us false negative by using common finalizer
authorMasashi Honma <masashi.honma@gmail.com>
Tue, 25 Jun 2019 01:51:07 +0000 (10:51 +0900)
committerJouni Malinen <j@w1.fi>
Wed, 26 Jun 2019 17:42:20 +0000 (20:42 +0300)
p2p_channel_5ghz_165_169_us fails with this message.

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

This patch fixes the issue.

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

index ada293b7a9ce4969a0d531cb9aff4c03e8e647f3..beee61d63e4cd009f9d8ff6534eeb213db1ea50b 100644 (file)
@@ -746,7 +746,7 @@ def test_p2p_channel_5ghz_165_169_us(dev):
         if "FAIL" not in res:
             raise Exception("GO on channel 169 allowed unexpectedly")
     finally:
-        set_country("00")
+        clear_regdom_dev(dev)
 
 def wait_go_down_up(dev):
     ev = dev.wait_group_event(["AP-DISABLED"], timeout=5)