[pypy-commit] pypy default: Increase the timeout

arigo pypy.commits at gmail.com
Sun May 29 10:35:30 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r84809:3753479bda28
Date: 2016-05-29 16:35 +0200
http://bitbucket.org/pypy/pypy/changeset/3753479bda28/

Log:	Increase the timeout

	Chances are that it's what occurred once on http://buildbot.pypy.org
	/summary/longrepr?testname=test_hypothesis&builder=own-
	linux-x86-32&build=4414&mod=rtyper.test.test_rordereddict

diff --git a/rpython/rtyper/test/test_rdict.py b/rpython/rtyper/test/test_rdict.py
--- a/rpython/rtyper/test/test_rdict.py
+++ b/rpython/rtyper/test/test_rdict.py
@@ -1231,7 +1231,7 @@
             self.st_keys = ann2strategy(self.space.s_key)
             self.st_values = ann2strategy(self.space.s_value)
             return
-        with signal_timeout(1):  # catches infinite loops
+        with signal_timeout(10):  # catches infinite loops
             action.execute(self.space)
 
     def teardown(self):


More information about the pypy-commit mailing list