From d963f0377215db4766286beafd0d75fb3614045d Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 16 Mar 2013 11:47:01 +0200 Subject: [PATCH] tests: Use social-only scan by default to speed up tests Signed-hostap: Jouni Malinen --- tests/hwsim/wpasupplicant.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/hwsim/wpasupplicant.py b/tests/hwsim/wpasupplicant.py index 3f7de95ac..5ca2cee37 100644 --- a/tests/hwsim/wpasupplicant.py +++ b/tests/hwsim/wpasupplicant.py @@ -114,11 +114,11 @@ class WpaSupplicant: return True return "[PROBE_REQ_ONLY]" not in res - def discover_peer(self, peer, full=True, timeout=15): + def discover_peer(self, peer, full=True, timeout=15, social=True): logger.info(self.ifname + ": Trying to discover peer " + peer) if self.peer_known(peer, full): return True - self.p2p_find() + self.p2p_find(social) count = 0 while count < timeout: time.sleep(1) @@ -253,7 +253,7 @@ class WpaSupplicant: def p2p_connect_group(self, go_addr, pin, timeout=0): self.dump_monitor() - if not self.discover_peer(go_addr): + if not self.discover_peer(go_addr, social=False): raise Exception("GO " + go_addr + " not found") self.dump_monitor() cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"