From: Jouni Malinen Date: Sun, 6 Apr 2014 13:33:23 +0000 (+0300) Subject: tests: WPS_CHECK_PIN with invalid PIN length X-Git-Tag: hostap_2_2~354 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df58939cece9b31a5c85c35f647abc2da7a260f9;p=thirdparty%2Fhostap.git tests: WPS_CHECK_PIN with invalid PIN length Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index 33a6f861e..24106d36c 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -1138,6 +1138,7 @@ def test_ap_wps_check_pin(dev, apdev): hapd = hostapd.Hostapd(apdev[0]['ifname']) for t in [ ("12345670", "12345670"), ("12345678", "FAIL-CHECKSUM"), + ("12345", "FAIL"), ("1234-5670", "12345670"), ("1234 5670", "12345670"), ("1-2.3:4 5670", "12345670") ]: