tests: Fix p2p_channel_5ghz_165_169_us false negative by using common finalizer

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>
This commit is contained in:
Masashi Honma 2019-06-25 10:51:07 +09:00 committed by Jouni Malinen
parent 645a16f186
commit c40b2638ed

View file

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