Restore the timeout

There may be a reason for a test to take 3 minutes long, but there is no reason
for the test to take even half a minute long *without any output*.
This commit is contained in:
ZyX 2015-02-21 18:17:23 +03:00
parent 678faed4c2
commit 74e81bf788
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ def main():
args.command[1:],
env=environ,
logfile=sio,
timeout=60 * 3,
timeout=30,
)
child.expect(re.compile(b'.*'))
sleep(0.5)