diff options
author | mattip <matti.picus@gmail.com> | 2016-03-12 14:21:16 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2016-03-12 14:21:16 +0200 |
commit | c1d341a5f7529c2bd9c2b21bb7763a237eac471e (patch) | |
tree | c5ed07d85c692e36b3b9dd1ce914581806280193 /testrunner | |
parent | re-set debug to True to make sure that subsequent asserts work (diff) | |
download | pypy-c1d341a5f7529c2bd9c2b21bb7763a237eac471e.tar.gz pypy-c1d341a5f7529c2bd9c2b21bb7763a237eac471e.tar.bz2 pypy-c1d341a5f7529c2bd9c2b21bb7763a237eac471e.zip |
fix for windows
Diffstat (limited to 'testrunner')
-rw-r--r-- | testrunner/runner.py | 4 |
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: |