Parcourir la source

tests: hostapd and RELOG

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 8 ans
Parent
commit
603b09b950
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 8 0
      tests/hwsim/test_hapd_ctrl.py

+ 8 - 0
tests/hwsim/test_hapd_ctrl.py

@@ -834,3 +834,11 @@ def test_hapd_ctrl_eapol_reauth_errors(dev, apdev):
     for t in tests:
         if "FAIL" not in hapd.request("EAPOL_REAUTH " + t):
             raise Exception("Invalid EAPOL_REAUTH command accepted: " + t)
+
+def test_hapd_ctrl_eapol_relog(dev, apdev):
+    """hostapd and RELOG"""
+    ssid = "hapd-ctrl"
+    params = { "ssid": ssid }
+    hapd = hostapd.add_ap(apdev[0], params)
+    if "OK" not in hapd.request("RELOG"):
+        raise Exception("RELOG failed")