From 5f0e59329b113a525d6b8a599f311595396b23b7 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 26 Apr 2014 17:09:48 +0300 Subject: [PATCH] tests: Invalid MAC address with BLACKLIST Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_ctrl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index 5145a266a..4accbba58 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -395,6 +395,8 @@ def test_wpas_ctrl_addr(dev): raise Exception("Unexpected success on invalid WPS_REG") if "FAIL" not in dev[0].request("IBSS_RSN 00:11:22:33:44"): raise Exception("Unexpected success on invalid IBSS_RSN") + if "FAIL" not in dev[0].request("BLACKLIST 00:11:22:33:44"): + raise Exception("Unexpected success on invalid BLACKLIST") def test_wpas_ctrl_wps_errors(dev): """wpa_supplicant ctrl_iface WPS error cases"""