diff options
author | Matti Picus <matti.picus@gmail.com> | 2017-10-02 00:05:56 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2017-10-02 00:05:56 +0300 |
commit | c5e4117b84331f101412ca8c16551abaa9ce8f61 (patch) | |
tree | bfa77f839cd3a75958ddd4d47803350229ca51b0 /testrunner | |
parent | win32 can run without a console, return None in this case (amaury advising) (diff) | |
download | pypy-c5e4117b84331f101412ca8c16551abaa9ce8f61.tar.gz pypy-c5e4117b84331f101412ca8c16551abaa9ce8f61.tar.bz2 pypy-c5e4117b84331f101412ca8c16551abaa9ce8f61.zip |
pypy-cw.exe -> pypy-c.exe, cw is the non-console exe (amaury)
Diffstat (limited to 'testrunner')
-rwxr-xr-x | testrunner/lib_python_tests.py | 2 | ||||
-rwxr-xr-x | testrunner/pypyjit_tests.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testrunner/lib_python_tests.py b/testrunner/lib_python_tests.py index aa6c8574de..4ec0c20616 100755 --- a/testrunner/lib_python_tests.py +++ b/testrunner/lib_python_tests.py @@ -12,7 +12,7 @@ os.environ['PYTHONPATH'] = rootdir 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 index 1952cdeb5b..dd07ae7081 100755 --- a/testrunner/pypyjit_tests.py +++ b/testrunner/pypyjit_tests.py @@ -12,7 +12,7 @@ os.environ['PYTHONPATH'] = rootdir 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" |