Author: Matti Picus <[email protected]>
Branch: py3.5
Changeset: r92541:6867bc3ac3d1
Date: 2017-10-02 00:05 +0300
http://bitbucket.org/pypy/pypy/changeset/6867bc3ac3d1/

Log:    pypy-cw.exe -> pypy-c.exe, cw is the non-console exe (amaury)

diff --git a/pypy/interpreter/test/test_app_main.py 
b/pypy/interpreter/test/test_app_main.py
--- a/pypy/interpreter/test/test_app_main.py
+++ b/pypy/interpreter/test/test_app_main.py
@@ -1163,7 +1163,7 @@
         old_sys_path = sys.path[:]
         sys.path.append(self.goal_dir)
         if sys.platform == 'win32':
-            exename = 'pypy3-cw.exe'
+            exename = 'pypy3-c.exe'
         else:
             exename = 'pypy3-c'
         try:
@@ -1185,7 +1185,7 @@
         old_sys_path = sys.path[:]
         sys.path.append(self.goal_dir)
         if sys.platform == 'win32':
-            exename = 'pypy3-cw.exe'
+            exename = 'pypy3-c.exe'
         else:
             exename = 'pypy3-c'
         try:
diff --git a/pypy/pytest-A.cfg b/pypy/pytest-A.cfg
--- a/pypy/pytest-A.cfg
+++ b/pypy/pytest-A.cfg
@@ -3,6 +3,6 @@
 
 interp = ['python']
 if sys.platform == 'win32':
-    test_driver = ['test_all.py', '-A', '--python=goal/pypy3-cw.exe']
+    test_driver = ['test_all.py', '-A', '--python=goal/pypy3-c.exe']
 else:
     test_driver = ['test_all.py', '-A', '--python=goal/pypy3-c']
diff --git a/testrunner/lib_python_tests.py b/testrunner/lib_python_tests.py
--- a/testrunner/lib_python_tests.py
+++ b/testrunner/lib_python_tests.py
@@ -12,7 +12,7 @@
 os.environ['PYTEST_PLUGINS'] = ''
 
 if sys.platform == 'win32':
-    pypyopt = "--pypy=pypy/goal/pypy3-cw.exe"
+    pypyopt = "--pypy=pypy/goal/pypy3-c.exe"
 else:
     pypyopt = "--pypy=pypy/goal/pypy3-c"
 
diff --git a/testrunner/pypyjit_tests.py b/testrunner/pypyjit_tests.py
--- a/testrunner/pypyjit_tests.py
+++ b/testrunner/pypyjit_tests.py
@@ -12,7 +12,7 @@
 os.environ['PYTEST_PLUGINS'] = ''
 
 if sys.platform == 'win32':
-    pypyopt = "--pypy=pypy/goal/pypy3-cw.exe"
+    pypyopt = "--pypy=pypy/goal/pypy3-c.exe"
 else:
     pypyopt = "--pypy=pypy/goal/pypy3-c"
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to