It looks like some test cases could fail due to timeouts since the 10
second wait may not be sufficient to cover some cases where 6 GHz
channels get scanned. Increase the timeouts to avoid hitting such cases.
Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
if "OK" not in dev[0].request("SCAN"):
raise Exception("SCAN command failed")
- ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"])
+ ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=15)
if ev is None:
raise Exception("Scan did not complete")
if "eap" in kwargs:
self.connect_network(id, timeout=20)
else:
- self.connect_network(id)
+ self.connect_network(id, timeout=15)
else:
self.dump_monitor()
self.select_network(id)