aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2016-03-12 14:21:16 +0200
committermattip <matti.picus@gmail.com>2016-03-12 14:21:16 +0200
commitc1d341a5f7529c2bd9c2b21bb7763a237eac471e (patch)
treec5ed07d85c692e36b3b9dd1ce914581806280193 /testrunner
parentre-set debug to True to make sure that subsequent asserts work (diff)
downloadpypy-c1d341a5f7529c2bd9c2b21bb7763a237eac471e.tar.gz
pypy-c1d341a5f7529c2bd9c2b21bb7763a237eac471e.tar.bz2
pypy-c1d341a5f7529c2bd9c2b21bb7763a237eac471e.zip
fix for windows
Diffstat (limited to 'testrunner')
-rw-r--r--testrunner/runner.py4
1 files changed, 2 insertions, 2 deletions
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: