From df58939cece9b31a5c85c35f647abc2da7a260f9 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 6 Apr 2014 16:33:23 +0300 Subject: [PATCH] tests: WPS_CHECK_PIN with invalid PIN length Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_wps.py | 1 + 1 file changed, 1 insertion(+) 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") ]: