From ee3567d659f64ff0428cd18bafa0cd98554f53c7 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 28 Jul 2022 16:41:23 +0300 Subject: [PATCH] tests: Add more time for scan/connection 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 --- tests/hwsim/test_scan.py | 2 +- tests/hwsim/wpasupplicant.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/hwsim/test_scan.py b/tests/hwsim/test_scan.py index 5beec4f32..15acfe3ca 100644 --- a/tests/hwsim/test_scan.py +++ b/tests/hwsim/test_scan.py @@ -1031,7 +1031,7 @@ def _test_scan_dfs(dev, apdev, params): 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") diff --git a/tests/hwsim/wpasupplicant.py b/tests/hwsim/wpasupplicant.py index a1f63c36e..fe1892785 100644 --- a/tests/hwsim/wpasupplicant.py +++ b/tests/hwsim/wpasupplicant.py @@ -1142,7 +1142,7 @@ class WpaSupplicant: 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)