From: Jouni Malinen Date: Sun, 29 Jan 2017 10:31:04 +0000 (+0200) Subject: tests: Increase timeout in ap_bss_config_file for CTRL-EVENT-TERMINATING X-Git-Tag: hostap_2_7~1727 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df20cdc4576c24754b72fb2f5078dac3d5bf1dfc;p=thirdparty%2Fhostap.git 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 --- diff --git a/tests/hwsim/test_ap_dynamic.py b/tests/hwsim/test_ap_dynamic.py index 7a74c6fb0..2fef02191 100644 --- a/tests/hwsim/test_ap_dynamic.py +++ b/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):