diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-07-03 21:37:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 21:37:14 (GMT) |
commit | d1b474cfd782ead35c8cb1be4680639ad0682413 (patch) | |
tree | 595cad4862c4452a0cfd2dbcdeab2ff3e89ef42f /Tools | |
parent | 1e4fcb3edd9b6bde302f8aa96c83507ae01b7e4e (diff) | |
download | cpython-d1b474cfd782ead35c8cb1be4680639ad0682413.zip cpython-d1b474cfd782ead35c8cb1be4680639ad0682413.tar.gz cpython-d1b474cfd782ead35c8cb1be4680639ad0682413.tar.bz2 |
Tools/buildbot/test.bat: add --slowest option (#2552)
Diffstat (limited to 'Tools')
-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 13541e0..daa53fa 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 %regrtest_args% +call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest %regrtest_args% |