]> granicus.if.org Git - python/commitdiff
Issue #11727, issue #11753, issue #11755: disable regrtest timeout
authorVictor Stinner <victor.stinner@haypocalc.com>
Sun, 3 Apr 2011 21:46:42 +0000 (23:46 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sun, 3 Apr 2011 21:46:42 +0000 (23:46 +0200)
Disable regrtest timeout until #11753 and #11755 are fixed

Lib/test/regrtest.py
Misc/NEWS

index 704ad77dfd832c9fa283cb06d398616b075b41f6..bc67f78127d9491d1618b755cbf70f4e8dbe643b 100755 (executable)
@@ -240,7 +240,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
          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=None):
     """Execute a test suite.
 
     This also parses command-line options and modifies its behavior
index 9fa8853cef6994b25a8e0eab144f5de1a647b2c2..9afa06c418f325d5d91d07e881a7be582dac9359 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -370,9 +370,8 @@ Extensions
 Tests
 -----
 
-- Issue #11727: If a test takes more than 30 minutes, regrtest dumps the
-  traceback of all threads and exits. Use --timeout option to change the
-  default timeout or to disable it.
+- Issue #11727: Add a --timeout option to regrtest: if a test takes more than
+  TIMEOUT seconds, dumps the traceback of all threads and exits.
 
 - Issue #11653: fix -W with -j in regrtest.