summaryrefslogtreecommitdiff
path: root/Tools
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
commit50da51f9515e09c03f391b95604a9c50ab2a3ec6 (patch)
treede166c0a5a410c4dd4081b8e2e924ac6342b0a6c /Tools
parent6e0b5002af896891196aff1686e24faf5dabfe16 (diff)
downloadcpython-50da51f9515e09c03f391b95604a9c50ab2a3ec6.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')
-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