]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Run owe test with PMF required
authorJouni Malinen <jouni@codeaurora.org>
Tue, 6 Feb 2018 16:55:18 +0000 (18:55 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 6 Feb 2018 16:55:18 +0000 (18:55 +0200)
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
tests/hwsim/test_owe.py

index 755a797ab2e324b2d44e66ebfdd98840854199ac..4efc3d24aad1fc0756487387cd4e8bd01306e442 100644 (file)
@@ -19,6 +19,7 @@ def test_owe(dev, apdev):
         raise HwsimSkip("OWE not supported")
     params = { "ssid": "owe",
                "wpa": "2",
+               "ieee80211w": "2",
                "wpa_key_mgmt": "OWE",
                "rsn_pairwise": "CCMP" }
     hapd = hostapd.add_ap(apdev[0], params)
@@ -29,7 +30,8 @@ def test_owe(dev, apdev):
     if "[WPA2-OWE-CCMP]" not in bss['flags']:
         raise Exception("OWE AKM not recognized: " + bss['flags'])
 
-    dev[0].connect("owe", key_mgmt="OWE")
+    dev[0].connect("owe", key_mgmt="OWE", ieee80211w="2",
+                   scan_freq="2412")
     hwsim_utils.test_connectivity(dev[0], hapd)
     val = dev[0].get_status_field("key_mgmt")
     if val != "OWE":