diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-10 08:07:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-10 08:07:38 (GMT) |
commit | e103aaca67be8316cd64c5d0aa9c54ba55f15b93 (patch) | |
tree | 4dc62a2661fc3a081b98131dec49d72e9d385188 /Tools | |
parent | 8f9cafad3d7f78193721d6c0ea84a499b36b7ce5 (diff) | |
download | cpython-e103aaca67be8316cd64c5d0aa9c54ba55f15b93.zip cpython-e103aaca67be8316cd64c5d0aa9c54ba55f15b93.tar.gz cpython-e103aaca67be8316cd64c5d0aa9c54ba55f15b93.tar.bz2 |
Show regrtest env changed warn on Windows buildbot
Issue #27829: don't pass --quiet option to regrtest to see
"Warning -- xxx was modified by ..." warnings.
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 7bc4de5..c5a9b00 100644 --- a/Tools/buildbot/test.bat +++ b/Tools/buildbot/test.bat @@ -3,7 +3,7 @@ rem Used by the buildbot "test" step. setlocal
set here=%~dp0
-set rt_opts=-q -d
+set rt_opts=-d
set regrtest_args=-j1
:CheckOpts
|