Author: Matti Picus <matti.pi...@gmail.com>
Branch: py3.5
Changeset: r92498:48bda039069f
Date: 2017-09-29 11:37 +0300
http://bitbucket.org/pypy/pypy/changeset/48bda039069f/

Log:    help testrunner find pypy3 exe on win32

diff --git a/pypy/pytest-A.cfg b/pypy/pytest-A.cfg
--- a/pypy/pytest-A.cfg
+++ b/pypy/pytest-A.cfg
@@ -1,5 +1,8 @@
+import sys
 cherrypick = ['interpreter', 'objspace/test', 'objspace/std', 'module']
 
 interp = ['python']
-test_driver = ['test_all.py', '-A', '--python=goal/pypy3-c']
-
+if sys.platform == 'win32':
+    test_driver = ['test_all.py', '-A', '--python=goal/pypy3-cw.exe']
+else:
+    test_driver = ['test_all.py', '-A', '--python=goal/pypy3-c']
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to