From 52ad367624dce4511f7a574eef312e595d197a5e Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 13 Apr 2019 12:06:25 +0300 Subject: [PATCH] tests: Make regdom clearing in WNM tests more robust It looks like the scan operation could end up reverting regdom back to the previously configured one, so configure 00 country before starting the disconnect-and-stop-scan operation to give some more time for the regdom to be cleared. Signed-off-by: Jouni Malinen --- tests/hwsim/test_wnm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_wnm.py b/tests/hwsim/test_wnm.py index 7baa24cff..86af2aa3a 100644 --- a/tests/hwsim/test_wnm.py +++ b/tests/hwsim/test_wnm.py @@ -27,6 +27,7 @@ def clear_regdom_state(dev, hapd, hapd2): hapd.request("DISABLE") if hapd2: hapd2.request("DISABLE") + subprocess.call(['iw', 'reg', 'set', '00']) dev[0].disconnect_and_stop_scan() subprocess.call(['iw', 'reg', 'set', '00']) dev[0].wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=0.5)