tests: Continue even if device reset fails
authorJouni Malinen <j@w1.fi>
Sat, 24 Aug 2013 18:16:04 +0000 (21:16 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 24 Aug 2013 18:16:04 +0000 (21:16 +0300)
This may provide better testing coverage by allowing temporary issues
during the test cycle to be ignored.

Signed-hostap: Jouni Malinen <j@w1.fi>

tests/hwsim/run-tests.py

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