From: Ben Rosenfeld Date: Tue, 5 May 2015 09:36:51 +0000 (+0300) Subject: tests: Change set_country() to use the global interface to get event X-Git-Tag: hostap_2_5~735 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb1d68eff0b5cf7d00ebb31597726dad44c30910;p=thirdparty%2Fhostap.git tests: Change set_country() to use the global interface to get event This is required for cases that multiple interfaces are used and the event can happen on any of them, for example when a dedicated P2P Device interface is used. Signed-off-by: Ben Rosenfeld --- diff --git a/tests/hwsim/test_p2p_channel.py b/tests/hwsim/test_p2p_channel.py index d89159a50..779ce9237 100644 --- a/tests/hwsim/test_p2p_channel.py +++ b/tests/hwsim/test_p2p_channel.py @@ -26,7 +26,7 @@ def set_country(country, dev=None): time.sleep(0.1) if dev: for i in range(10): - ev = dev.wait_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=15) + ev = dev.wait_global_event(["CTRL-EVENT-REGDOM-CHANGE"], timeout=15) if ev is None: raise Exception("No regdom change event seen") if "type=COUNTRY alpha2=" + country in ev: