mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-17 17:43:06 -05:00
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>
This commit is contained in:
parent
0c43a982c7
commit
789959c493
@ -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'])
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user