[Python-checkins] cpython: Fix faulthandler timeout to avoid breaking buildbots

antoine.pitrou python-checkins at python.org
Thu Apr 7 23:22:32 CEST 2011


http://hg.python.org/cpython/rev/567cbddf8678
changeset:   69191:567cbddf8678
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Thu Apr 07 23:22:28 2011 +0200
summary:
  Fix faulthandler timeout to avoid breaking buildbots

files:
  Lib/test/regrtest.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -240,7 +240,7 @@
          findleaks=False, use_resources=None, trace=False, coverdir='coverage',
          runleaks=False, huntrleaks=False, verbose2=False, print_slow=False,
          random_seed=None, use_mp=None, verbose3=False, forever=False,
-         header=False, timeout=30*60):
+         header=False, timeout=60*60):
     """Execute a test suite.
 
     This also parses command-line options and modifies its behavior

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list