summaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-05-31 15:40:10 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-05-31 15:40:10 +0530
commitf56b402a5b98fbb2c2f3af4ebdac3f53313c5ab1 (patch)
tree6b34356b429ef9282214ed80ba6437a72944cf41 /run_cross_test.py
parent05f8b1bd7829c425a8a4838394b8c2d5964c7553 (diff)
downloadmeson-f56b402a5b98fbb2c2f3af4ebdac3f53313c5ab1.tar.gz
Revert "mesonlib: handle meson exe wrappers"
This reverts commit 0627e9d616dc311b7c9b0ef17301f680ac9e78a7. Breaks installation: https://github.com/mesonbuild/meson/issues/3647 Will be restored once that can be fixed.
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index 22e197234..71914028f 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -28,7 +28,6 @@ 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)]
@@ -47,6 +46,5 @@ def runtests(cross_file):
if __name__ == '__main__':
setup_commands('ninja')
- setup_pythonpath()
cross_file = sys.argv[1]
runtests(cross_file)