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 /Tools/buildbot | |
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 'Tools/buildbot')
-rw-r--r-- | Tools/buildbot/test.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat index 5972d5e..7bc4de5 100644 --- a/Tools/buildbot/test.bat +++ b/Tools/buildbot/test.bat @@ -16,4 +16,4 @@ if "%1"=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts if NOT "%1"=="" (set regrtest_args=%regrtest_args% %1) & shift & goto CheckOpts
echo on
-call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --timeout=900 %regrtest_args%
+call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest --timeout=900 %regrtest_args%
|