Fix a failing test on an apparently slow Windows buildbot.

On slower Windows machines, waiting 0.1 seconds can sometimes not be
enough for a subprocess to start and be ready to accept signals, causing
the test to fail. One buildbot is also choking on input()/EOFError so
that was changed to not depend on input.
This commit is contained in:
Brian Curtin 2010-04-05 19:04:23 +00:00
parent 56506a6ed2
commit fce1d31d47
2 changed files with 4 additions and 3 deletions

View file

@ -39,4 +39,5 @@ if __name__ == "__main__":
exit(-1)
# Do nothing but wait for the signal
input()
while True:
pass