From: Jouni Malinen Date: Mon, 7 Sep 2015 10:46:58 +0000 (+0300) Subject: tests: WPS ER init failure X-Git-Tag: hostap_2_5~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07536b18ce90228083e28b2866eff2df5dda5453;p=thirdparty%2Fhostap.git tests: WPS ER init failure Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index e82ae8332..9684a36ee 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -3419,6 +3419,12 @@ def _test_ap_wps_er_init_oom(dev, apdev): if "FAIL" not in dev[0].request("WPS_ER_START ifname=lo"): raise Exception("WPS_ER_START succeeded during os_get_random failure") +def test_ap_wps_er_init_fail(dev, apdev): + """WPS ER init failure""" + if "FAIL" not in dev[0].request("WPS_ER_START ifname=does-not-exist"): + dev[0].request("WPS_ER_STOP") + raise Exception("WPS_ER_START with non-existing ifname succeeded") + def test_ap_wps_wpa_cli_action(dev, apdev, test_params): """WPS events and wpa_cli action script""" logdir = os.path.abspath(test_params['logdir'])