tests/run-tests.py
changeset 19407 ce3d1cf957f8
parent 19322 ff1586a3adc5
child 19413 a4de0d3dc35a
--- a/tests/run-tests.py	Tue Jul 16 11:53:53 2013 -0500
+++ b/tests/run-tests.py	Tue Jul 16 12:44:11 2013 -0500
@@ -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)