From df20cdc4576c24754b72fb2f5078dac3d5bf1dfc Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 29 Jan 2017 12:31:04 +0200 Subject: [PATCH] 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 --- tests/hwsim/test_ap_dynamic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.47.3