summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-04-07 21:22:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-04-07 21:22:28 (GMT)
commitb1eb6602703d040b91e444a8764ea1ba8af69a21 (patch)
tree55f13d9f7418c349c144ac6508f1c61f3c199c47
parent6537be7fb20ca6e2c8617e8369e45c7f484b3724 (diff)
downloadcpython-b1eb6602703d040b91e444a8764ea1ba8af69a21.zip
cpython-b1eb6602703d040b91e444a8764ea1ba8af69a21.tar.gz
cpython-b1eb6602703d040b91e444a8764ea1ba8af69a21.tar.bz2
Fix faulthandler timeout to avoid breaking buildbots
-rwxr-xr-xLib/test/regrtest.py2
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