From: Victor Stinner Date: Fri, 3 Jun 2011 10:53:26 +0000 (+0200) Subject: Close #12250: Disable the regrtest timeout by default X-Git-Tag: v3.3.0a1~2183^2~10^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=301968874bf0ebc146df1831b263bd35317f8801;p=python Close #12250: Disable the regrtest timeout by default Keep a timeout of 1 hour for buildbots. --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 29e8648121..c83d7e17ae 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -22,8 +22,7 @@ Options: -h/--help -- print this text and exit --timeout TIMEOUT -- dump the traceback and exit if a test takes more - than TIMEOUT seconds (default: 30 minutes); disable - the timeout if TIMEOUT is zero + than TIMEOUT seconds --wait -- wait for user input, e.g., allow a debugger to be attached Verbosity @@ -269,11 +268,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, # Display the Python traceback fatal errors (e.g. segfault) faulthandler.enable(all_threads=True) - if hasattr(faulthandler, 'dump_tracebacks_later'): - timeout = 60*60 - else: - timeout = None - replace_stdout() support.record_original_stdout(sys.stdout) @@ -295,6 +289,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, use_resources = [] debug = False start = None + timeout = None for o, a in opts: if o in ('-h', '--help'): print(__doc__) @@ -420,10 +415,13 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, testdir = os.path.join(support.SAVEDCWD, a) elif o == '--timeout': if not hasattr(faulthandler, 'dump_tracebacks_later'): - print("--timeout option requires " + print("The timeout option requires " "faulthandler.dump_tracebacks_later", file=sys.stderr) sys.exit(1) timeout = float(a) + if timeout <= 0: + print("The timeout must be greater than 0", file=sys.stderr) + sys.exit(1) elif o == '--wait': input("Press any key to continue...") else: @@ -835,7 +833,7 @@ def runtest(test, verbose, quiet, support.verbose = verbose # Tell tests to be moderately quiet if use_resources is not None: support.use_resources = use_resources - use_timeout = (timeout is not None and timeout > 0) + use_timeout = (timeout is not None) if use_timeout: faulthandler.dump_tracebacks_later(timeout, exit=True) try: diff --git a/Makefile.pre.in b/Makefile.pre.in index 3cf8ec115f..cd5a0f6ed7 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -755,7 +755,7 @@ $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS) # generated bytecode. This is sometimes a very shy bug needing a lot of # sample data. -TESTOPTS= -l $(EXTRATESTOPTS) +TESTOPTS= -l --timeout=3600 $(EXTRATESTOPTS) TESTPROG= $(srcdir)/Lib/test/regrtest.py TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -Wd -E -bb $(TESTPYTHONOPTS) test: all platform