tests: wpa_supplicant SET lci error cases
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
479c05b067
commit
22e0dade9a
1 changed files with 9 additions and 0 deletions
|
@ -1987,3 +1987,12 @@ def test_wpas_ctrl_bss_current(dev, apdev):
|
||||||
res = dev[0].request("BSS CURRENT")
|
res = dev[0].request("BSS CURRENT")
|
||||||
if bssid not in res:
|
if bssid not in res:
|
||||||
raise Exception("Unexpected BSS CURRENT response in connected state")
|
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")
|
||||||
|
|
Loading…
Add table
Reference in a new issue