diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-06-30 14:44:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-30 14:44:08 (GMT) |
commit | 00561189fb5d85826cfc907e3a72361e1a39a591 (patch) | |
tree | 7debbcc9b075a69e39387f47eaeaa9ffb366afd8 /Tools/buildbot/test.bat | |
parent | 7eebeb8fb84e2a9cb73903a08c59cf1d3b32cee0 (diff) | |
download | cpython-00561189fb5d85826cfc907e3a72361e1a39a591.zip cpython-00561189fb5d85826cfc907e3a72361e1a39a591.tar.gz cpython-00561189fb5d85826cfc907e3a72361e1a39a591.tar.bz2 |
buildbot: pass --fail-env-changed to regrtest (#2509)
Make tests fail if a test altered the environment.
Diffstat (limited to 'Tools/buildbot/test.bat')
-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 0b3a309..40ffc7e 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 --slowest --timeout=1200 %regrtest_args% +call "%here%..\..\PCbuild\rt.bat" %rt_opts% -uall -rwW --slowest --timeout=1200 --fail-env-changed %regrtest_args% |