diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-03 10:53:26 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-03 10:53:26 (GMT) |
commit | 301968874bf0ebc146df1831b263bd35317f8801 (patch) | |
tree | 74cecd5d5765a43c8ad74a5bd173c5f0530c4634 /Makefile.pre.in | |
parent | 22cc1183a3d92a29836de3c79f5e7b099e39c1f1 (diff) | |
download | cpython-301968874bf0ebc146df1831b263bd35317f8801.zip cpython-301968874bf0ebc146df1831b263bd35317f8801.tar.gz cpython-301968874bf0ebc146df1831b263bd35317f8801.tar.bz2 |
Close #12250: Disable the regrtest timeout by default
Keep a timeout of 1 hour for buildbots.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 3cf8ec1..cd5a0f6 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 |