mirror of https://github.com/python/cpython.git
Disable regrtest timeout until #11753 and #11755 are fixed
This commit is contained in:
parent
f77ccc6d7e
commit
d7edf3b82d
|
@ -240,7 +240,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
|
||||||
findleaks=False, use_resources=None, trace=False, coverdir='coverage',
|
findleaks=False, use_resources=None, trace=False, coverdir='coverage',
|
||||||
runleaks=False, huntrleaks=False, verbose2=False, print_slow=False,
|
runleaks=False, huntrleaks=False, verbose2=False, print_slow=False,
|
||||||
random_seed=None, use_mp=None, verbose3=False, forever=False,
|
random_seed=None, use_mp=None, verbose3=False, forever=False,
|
||||||
header=False, timeout=30*60):
|
header=False, timeout=None):
|
||||||
"""Execute a test suite.
|
"""Execute a test suite.
|
||||||
|
|
||||||
This also parses command-line options and modifies its behavior
|
This also parses command-line options and modifies its behavior
|
||||||
|
|
|
@ -370,9 +370,8 @@ Extensions
|
||||||
Tests
|
Tests
|
||||||
-----
|
-----
|
||||||
|
|
||||||
- Issue #11727: If a test takes more than 30 minutes, regrtest dumps the
|
- Issue #11727: Add a --timeout option to regrtest: if a test takes more than
|
||||||
traceback of all threads and exits. Use --timeout option to change the
|
TIMEOUT seconds, dumps the traceback of all threads and exits.
|
||||||
default timeout or to disable it.
|
|
||||||
|
|
||||||
- Issue #11653: fix -W with -j in regrtest.
|
- Issue #11653: fix -W with -j in regrtest.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue