diff options
Diffstat (limited to 'testrunner/pypyjit_tests.py')
-rw-r--r--[-rwxr-xr-x] | testrunner/pypyjit_tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testrunner/pypyjit_tests.py b/testrunner/pypyjit_tests.py index 624c67c337..0f8c8bd841 100755..100644 --- a/testrunner/pypyjit_tests.py +++ b/testrunner/pypyjit_tests.py @@ -8,11 +8,14 @@ import sys, os import subprocess rootdir = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))) +os.environ['PYTHONPATH'] = rootdir +os.environ['PYTEST_PLUGINS'] = '' popen = subprocess.Popen( ["pypy/goal/pypy-c", "pypy/test_all.py", - "--resultlog=pypyjit_new.log", - "pypy/module/pypyjit/test_pypy_c"], + "--resultlog=pypyjit_new.log", + "pypy/module/pypyjit/test_pypy_c", + ] + sys.argv[1:], cwd=rootdir) try: |