mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
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>
This commit is contained in:
parent
96a8cc881b
commit
df20cdc457
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user