summaryrefslogtreecommitdiff
path: root/Tools/buildbot
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-05-20 13:15:55 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-05-20 13:15:55 +0200
commit6d81a2136d61cb787e7bd7fc26a7ba2a363d8c40 (patch)
treeff515387774179c272f38d2f80cfa6c5cf5ffdbd /Tools/buildbot
parent2292edf574f2fcf630c81f0c3348692f18dc4e42 (diff)
downloadcpython-git-6d81a2136d61cb787e7bd7fc26a7ba2a363d8c40.tar.gz
regrtest doesn't ignore -j1 anymore
* regrtest now uses subprocesses when the -j1 command line option is used: each test file runs in a fresh child process. Before, the -j1 option was ignored. * Tools/buildbot/test.bat script now uses -j1 by default to run each test file in fresh child process.
Diffstat (limited to 'Tools/buildbot')
-rw-r--r--Tools/buildbot/test.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat
index c01400ce1f..5972d5e088 100644
--- a/Tools/buildbot/test.bat
+++ b/Tools/buildbot/test.bat
@@ -4,7 +4,7 @@ setlocal
set here=%~dp0
set rt_opts=-q -d
-set regrtest_args=
+set regrtest_args=-j1
:CheckOpts
if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts