Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r52725:515842e726fc
Date: 2012-02-21 13:51 +0000
http://bitbucket.org/pypy/pypy/changeset/515842e726fc/
Log: add a timeout of 600s to tests using pexpect. Timeouts were causing
test failures on ARM
diff --git a/pypy/conftest.py b/pypy/conftest.py
--- a/pypy/conftest.py
+++ b/pypy/conftest.py
@@ -539,6 +539,7 @@
def _spawn(self, *args, **kwds):
import pexpect
+ kwds.setdefault('timeout', 600)
child = pexpect.spawn(*args, **kwds)
child.logfile = sys.stdout
return child
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit