Browse Source

tests: WPS_CHECK_PIN with invalid PIN length

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 11 years ago
parent
commit
df58939cec
1 changed files with 1 additions and 0 deletions
  1. 1 0
      tests/hwsim/test_ap_wps.py

+ 1 - 0
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") ]: