]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Allow more ciphers in ap_wps_mixed_cred
authorJouni Malinen <jouni@qca.qualcomm.com>
Sat, 2 Dec 2017 10:03:53 +0000 (12:03 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 2 Dec 2017 10:04:32 +0000 (12:04 +0200)
This is needed to avoid false errors with GCMP-256 and CCMP-256 to be
added in the implementation.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
tests/hwsim/test_ap_wps.py

index 118166419281781a16e8bf2eaddfd87ef10c890c..f2e894df8c2ce915d8769aab17d36f3a84c1d4ef 100644 (file)
@@ -3493,7 +3493,8 @@ def test_ap_wps_mixed_cred(dev, apdev):
     if proto != "WPA RSN":
         raise Exception("Unexpected merged proto field value: " + proto)
     pairwise = dev[0].get_network(id, "pairwise")
-    if pairwise != "CCMP TKIP" and pairwise != "CCMP GCMP TKIP":
+    p = pairwise.split()
+    if "CCMP" not in p or "TKIP" not in p:
         raise Exception("Unexpected merged pairwise field value: " + pairwise)
 
 @remote_compatible