Browse Source

tests: Increase timeout in ap_bss_config_file for CTRL-EVENT-TERMINATING

If the kernel is built with CONFIG_DEBUG_KOBJECT_RELEASE=y, the hostapd
termination event for the wlan3 interface may be delayed beyond the
previous five second timeout. This could result in the test case failing
and the following test case failing as well due to the separate hostapd
process being still in the process of cleaning up.

Fix this by increasing the timeout to avoid forcing test termination in
such cases.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 8 years ago
parent
commit
df20cdc457
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/test_ap_dynamic.py

+ 1 - 1
tests/hwsim/test_ap_dynamic.py

@@ -556,7 +556,7 @@ def test_ap_bss_config_file(dev, apdev, params):
     hapd.ping()
     if "OK" not in hapd.request("TERMINATE"):
         raise Exception("Failed to terminate hostapd process")
-    ev = hapd.wait_event(["CTRL-EVENT-TERMINATING"], timeout=5)
+    ev = hapd.wait_event(["CTRL-EVENT-TERMINATING"], timeout=15)
     if ev is None:
         raise Exception("CTRL-EVENT-TERMINATING not seen")
     for i in range(30):