diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-07 21:22:28 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-07 21:22:28 (GMT) |
commit | b1eb6602703d040b91e444a8764ea1ba8af69a21 (patch) | |
tree | 55f13d9f7418c349c144ac6508f1c61f3c199c47 | |
parent | 6537be7fb20ca6e2c8617e8369e45c7f484b3724 (diff) | |
download | cpython-b1eb6602703d040b91e444a8764ea1ba8af69a21.zip cpython-b1eb6602703d040b91e444a8764ea1ba8af69a21.tar.gz cpython-b1eb6602703d040b91e444a8764ea1ba8af69a21.tar.bz2 |
Fix faulthandler timeout to avoid breaking buildbots
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 704ad77..414aeff 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -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=60*60): """Execute a test suite. This also parses command-line options and modifies its behavior |