tests: Fix ap_track_taxonomy to clear country code setting

This test case could have ended with the station devices still in US
regulatory domain and that could make a following test case fail in some
sequences. For example, "ap_track_taxonomy ibss_5ghz" sequence made
ibss_5ghz fail to see the regdom change event since there was not one
due to the US country code already being in use at the beginning of the
test case. Fix this by clearing the country code at the end of
ap_track_taxonomy.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2016-09-30 23:46:17 +03:00
parent ebf59eb549
commit d57ca5cd45

View file

@ -290,6 +290,10 @@ def test_ap_track_taxonomy(dev, apdev):
_test_ap_track_taxonomy(dev, apdev) _test_ap_track_taxonomy(dev, apdev)
finally: finally:
dev[1].request("SET p2p_disabled 0") dev[1].request("SET p2p_disabled 0")
subprocess.call(['iw', 'reg', 'set', '00'])
dev[0].flush_scan_cache()
dev[1].flush_scan_cache()
dev[2].flush_scan_cache()
def _test_ap_track_taxonomy(dev, apdev): def _test_ap_track_taxonomy(dev, apdev):
params = { "ssid": "track", params = { "ssid": "track",