Browse Source

tests: Continue even if device reset fails

This may provide better testing coverage by allowing temporary issues
during the test cycle to be ignored.

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 11 years ago
parent
commit
789959c493
1 changed files with 4 additions and 1 deletions
  1. 4 1
      tests/hwsim/run-tests.py

+ 4 - 1
tests/hwsim/run-tests.py

@@ -20,7 +20,10 @@ from hostapd import HostapdGlobal
 def reset_devs(dev, apdev):
 def reset_devs(dev, apdev):
     hapd = HostapdGlobal()
     hapd = HostapdGlobal()
     for d in dev:
     for d in dev:
-        d.reset()
+        try:
+            d.reset()
+        except Exception, e:
+            logger.info("Failed to reset device " + d.ifname)
     for ap in apdev:
     for ap in apdev:
         hapd.remove(ap['ifname'])
         hapd.remove(ap['ifname'])