[pypy-commit] pypy arm-backend-2: add a timeout of 600s to tests using pexpect. Timeouts were causing test failures on ARM

bivab noreply at buildbot.pypy.org
Tue Feb 21 14:54:01 CET 2012


Author: David Schneider <david.schneider at picle.org>
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


More information about the pypy-commit mailing list