From 95497a5fc1f860aff802170a8ef9222b22611acb Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 5 Feb 2017 16:52:38 +0200 Subject: [PATCH] tests: BSS Load update failing to get survey data Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_open.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/hwsim/test_ap_open.py b/tests/hwsim/test_ap_open.py index a5f992e98..5566c2c67 100644 --- a/tests/hwsim/test_ap_open.py +++ b/tests/hwsim/test_ap_open.py @@ -220,6 +220,14 @@ def test_ap_bss_load(dev, apdev): hwsim_utils.test_connectivity(dev[0], hapd) time.sleep(0.15) +def test_ap_bss_load_fail(dev, apdev): + """BSS Load update failing to get survey data""" + hapd = hostapd.add_ap(apdev[0], + { "ssid": "open", + "bss_load_update_period": "1" }) + with fail_test(hapd, 1, "wpa_driver_nl80211_get_survey"): + wait_fail_trigger(hapd, "GET_FAIL") + def hapd_out_of_mem(hapd, apdev, count, func): with alloc_fail(hapd, count, func): started = False