From: Jouni Malinen Date: Sun, 8 Jan 2017 12:54:01 +0000 (+0200) Subject: tests: wpa_supplicant SET radio_disabled X-Git-Tag: hostap_2_7~1782 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=35b023b79a0f9a4261fb975fa3521eba5b221d89;p=thirdparty%2Fhostap.git tests: wpa_supplicant SET radio_disabled Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index d8070a0f9..7683276dc 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -1996,3 +1996,10 @@ def test_wpas_ctrl_set_lci_errors(dev): 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") + +def test_wpas_ctrl_set_radio_disabled(dev): + """wpa_supplicant SET radio_disabled""" + # This is not currently supported with nl80211, but execute the commands + # without checking the result for some additional code coverage. + dev[0].request("SET radio_disabled 1") + dev[0].request("SET radio_disabled 0")