Author: mattip <matti.pi...@gmail.com>
Branch: 
Changeset: r82992:e5ee9597f8cc
Date: 2016-03-12 14:21 +0200
http://bitbucket.org/pypy/pypy/changeset/e5ee9597f8cc/

Log:    fix for windows

diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -240,8 +240,8 @@
         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:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to