Parcourir la source

tests: hostapd global ctrl_iface DETACH failure

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

+ 3 - 0
tests/hwsim/test_hapd_ctrl.py

@@ -503,6 +503,9 @@ def test_hapd_ctrl_global(dev, apdev):
     if apdev[0]['ifname'] + " ctrl_iface=" not in res:
         raise Exception("AP interface missing from INTERFACES ctrl")
 
+    if "FAIL" not in hapd_global.request("DETACH"):
+        raise Exception("DETACH succeeded unexpectedly")
+
 def dup_network(hapd_global, src, dst, param):
     res = hapd_global.request("DUP_NETWORK %s %s %s" % (src, dst, param))
     if "OK" not in res: