aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2017-03-13 08:45:03 +0100
committerArmin Rigo <arigo@tunes.org>2017-03-13 08:45:03 +0100
commite983854cc62685414cdee977f2a81b12c764390b (patch)
tree95ad481b39a4bee12e5f8206a5e515f4dd70f317 /testrunner/pypyjit_tests.py
parentCheck in here test runners for the lib-python and the pypyjit steps (diff)
downloadpypy-e983854cc62685414cdee977f2a81b12c764390b.tar.gz
pypy-e983854cc62685414cdee977f2a81b12c764390b.tar.bz2
pypy-e983854cc62685414cdee977f2a81b12c764390b.zip
fixes, also add app_level_tests.py
Diffstat (limited to 'testrunner/pypyjit_tests.py')
-rw-r--r--[-rwxr-xr-x]testrunner/pypyjit_tests.py7
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: