diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 09:27:40 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 09:27:40 (GMT) |
commit | f7457001a642f0fced2d08971c7926d9059092cd (patch) | |
tree | 627e59e9e748b6d3dd24662c9e6cb42291594840 /Makefile.pre.in | |
parent | 6c44619ece6b6c59075d934af160e20d2025f901 (diff) | |
download | cpython-f7457001a642f0fced2d08971c7926d9059092cd.zip cpython-f7457001a642f0fced2d08971c7926d9059092cd.tar.gz cpython-f7457001a642f0fced2d08971c7926d9059092cd.tar.bz2 |
Tests: add --slowest option to buildbots
Display the top 10 slowest tests.
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 582775d..643424c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1018,7 +1018,7 @@ buildbottest: all platform -@if which pybuildbot.identify >/dev/null 2>&1; then \ pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \ fi - $(TESTRUNNER) -j 1 -u all -W --timeout=$(TESTTIMEOUT) $(TESTOPTS) + $(TESTRUNNER) -j 1 -u all -W --slowest --timeout=$(TESTTIMEOUT) $(TESTOPTS) QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \ test_multibytecodec test_urllib2_localnet test_itertools \ |