From: Jouni Malinen Date: Sun, 8 Jan 2017 12:51:09 +0000 (+0200) Subject: tests: wpa_supplicant SET lci error cases X-Git-Tag: hostap_2_7~1783 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22e0dade9a90e794e3eef0117b0e2b4fb9ac6e36;p=thirdparty%2Fhostap.git tests: wpa_supplicant SET lci error cases Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index e35b95820..d8070a0f9 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -1987,3 +1987,12 @@ def test_wpas_ctrl_bss_current(dev, apdev): res = dev[0].request("BSS CURRENT") if bssid not in res: raise Exception("Unexpected BSS CURRENT response in connected state") + +def test_wpas_ctrl_set_lci_errors(dev): + """wpa_supplicant SET lci error cases""" + if "FAIL" not in dev[0].request("SET lci q"): + raise Exception("Invalid LCI value accepted") + + with fail_test(dev[0], 1, "os_get_reltime;wpas_ctrl_iface_set_lci"): + if "FAIL" not in dev[0].request("SET lci 00"): + raise Exception("SET lci accepted with failing os_get_reltime")