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.
This commit is contained in:
Victor Stinner 2016-05-20 13:15:55 +02:00
parent 2292edf574
commit 6d81a2136d
3 changed files with 11 additions and 3 deletions

View file

@ -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