From c1d341a5f7529c2bd9c2b21bb7763a237eac471e Mon Sep 17 00:00:00 2001 From: mattip Date: Sat, 12 Mar 2016 14:21:16 +0200 Subject: fix for windows --- testrunner/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testrunner') diff --git a/testrunner/runner.py b/testrunner/runner.py index cb2ccd534d..902e4d3aa8 100644 --- a/testrunner/runner.py +++ b/testrunner/runner.py @@ -240,8 +240,8 @@ def execute_tests(run_param, testdirs, logfile, out): s = 'setting' if os.environ.get('MAKEFLAGS'): s = 'overriding' - out.write("%s MAKEFLAGS to '-j1'\n" % s) - os.environ['MAKEFLAGS'] = '-j1' + out.write("%s MAKEFLAGS to ' ' (space)\n" % s) + os.environ['MAKEFLAGS'] = ' ' failure = False for testname in testdirs: -- cgit v1.2.3-65-gdbad