aboutsummaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index 7191402..22e1972 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -28,6 +28,7 @@ from pathlib import Path
from run_project_tests import gather_tests, run_tests, StopException, setup_commands
from run_project_tests import failing_logs
+from run_tests import setup_pythonpath
def runtests(cross_file):
commontests = [('common', gather_tests(Path('test cases', 'common')), False)]
@@ -46,5 +47,6 @@ def runtests(cross_file):
if __name__ == '__main__':
setup_commands('ninja')
+ setup_pythonpath()
cross_file = sys.argv[1]
runtests(cross_file)