]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix mesh_secure_ocv_mix_legacy false negative by using common finalizer
authorMasashi Honma <masashi.honma@gmail.com>
Sun, 28 Jun 2020 23:23:01 +0000 (08:23 +0900)
committerJouni Malinen <j@w1.fi>
Mon, 12 Oct 2020 08:17:52 +0000 (11:17 +0300)
mesh_secure_ocv_mix_legacy might fail with this message:

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

This patch fixes the issue.

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

index 3c918184f158bd7f6919679246605fff016e2cb9..8298d482d81211c9c8dd7c57c47d064024a2296e 100644 (file)
@@ -406,7 +406,7 @@ def set_reg(dev, country):
 def clear_reg_setting(dev):
     dev[0].request("MESH_GROUP_REMOVE " + dev[0].ifname)
     dev[1].request("MESH_GROUP_REMOVE " + dev[1].ifname)
-    subprocess.call(['iw', 'reg', 'set', '00'])
+    clear_regdom_dev(dev)
     dev[0].flush_scan_cache()
     dev[1].flush_scan_cache()