From: Jouni Malinen Date: Sun, 7 Dec 2014 16:19:12 +0000 (+0200) Subject: tests: wpa_supplicant ctrl_iface BSSID command error case X-Git-Tag: hostap_2_4~892 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=feb795d6d32a36f9d84fce84008b161681d46961;p=thirdparty%2Fhostap.git tests: wpa_supplicant ctrl_iface BSSID command error case Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index 54f45e1bf..6cdf3aab9 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -198,6 +198,8 @@ def test_wpas_ctrl_network(dev): raise Exception("Unexpected BSSID success") if "FAIL" not in dev[0].request('BSSID ' + str(id) + ' 00:11:22:33:44'): raise Exception("Unexpected BSSID success") + if "FAIL" not in dev[0].request('BSSID ' + str(id)): + raise Exception("Unexpected BSSID success") def test_wpas_ctrl_many_networks(dev, apdev): """wpa_supplicant ctrl_iface LIST_NETWORKS with huge number of networks"""