diff options
Diffstat (limited to 'testrunner')
-rw-r--r-- | testrunner/runner.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testrunner/runner.py b/testrunner/runner.py index f2619a548b..cb2ccd534d 100644 --- a/testrunner/runner.py +++ b/testrunner/runner.py @@ -237,6 +237,11 @@ def execute_tests(run_param, testdirs, logfile, out): N = run_param.parallel_runs if N > 1: out.write("running %d parallel test workers\n" % N) + s = 'setting' + if os.environ.get('MAKEFLAGS'): + s = 'overriding' + out.write("%s MAKEFLAGS to '-j1'\n" % s) + os.environ['MAKEFLAGS'] = '-j1' failure = False for testname in testdirs: |