Skip to content
Snippets Groups Projects
Commit ce3d1cf9 authored by Matt Mackall's avatar Matt Mackall
Browse files

run-tests: patch over py2.4 proc.wait() race

parent 3185b347
Branches
Tags
No related merge requests found
......@@ -838,7 +838,11 @@
cleanup()
raise
ret = proc.wait()
try:
ret = proc.wait()
except OSError:
# Py2.4 seems to have a race here
pass
if wifexited(ret):
ret = os.WEXITSTATUS(ret)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment