]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix wait duration
authorJouni Malinen <j@w1.fi>
Sat, 16 Mar 2013 09:21:22 +0000 (11:21 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 16 Mar 2013 09:21:22 +0000 (11:21 +0200)
Signed-hostap: Jouni Malinen <j@w1.fi>

tests/hwsim/wpasupplicant.py

index 05bd531eab8313cb9da4ac44fb302ce7746ba52c..3f7de95acbdd5a915578e86f2d1fae325dd80ba6 100644 (file)
@@ -205,7 +205,7 @@ class WpaSupplicant:
 
     def wait_event(self, events, timeout):
         count = 0
-        while count < timeout * 2:
+        while count < timeout * 10:
             count = count + 1
             time.sleep(0.1)
             while self.mon.pending():