diff mbox series

[1/7] tests: Fix mesh_secure_ocv_mix_legacy false negative by using common finalizer

Message ID 20200628232307.72125-1-masashi.honma@gmail.com
State Accepted
Headers show
Series [1/7] tests: Fix mesh_secure_ocv_mix_legacy false negative by using common finalizer | expand

Commit Message

Masashi Honma June 28, 2020, 11:23 p.m. UTC
mesh_secure_ocv_mix_legacy fails 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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jouni Malinen Oct. 12, 2020, 8:50 a.m. UTC | #1
On Mon, Jun 29, 2020 at 08:23:01AM +0900, Masashi Honma wrote:
> mesh_secure_ocv_mix_legacy fails 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.

Thanks, all seven patches applied. I don't actually see these issues in
my test setup, but anyway, using the more generic cleanup routines feels
like a reasonable approach to use here.
diff mbox series

Patch

diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py
index 3c918184f..8298d482d 100644
--- a/tests/hwsim/test_wpas_mesh.py
+++ b/tests/hwsim/test_wpas_mesh.py
@@ -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()