Browse Source

autotest: avoid a race condition in quadplane test

this shows up on the new (faster) autotest server
master
Andrew Tridgell 9 years ago
parent
commit
26e1c30b19
  1. 2
      Tools/autotest/pysim/util.py

2
Tools/autotest/pysim/util.py

@ -162,7 +162,7 @@ def pexpect_drain(p): @@ -162,7 +162,7 @@ def pexpect_drain(p):
import pexpect
try:
p.read_nonblocking(1000, timeout=0)
except pexpect.TIMEOUT:
except Exception:
pass

Loading…
Cancel
Save