aboutsummaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index 70db667..6cba324 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -29,7 +29,14 @@ def runtests(cross_file, failfast, cross_only):
tests = ['--only', 'common']
if not cross_only:
tests.append('native')
- cmd = mesonlib.python_command + ['run_project_tests.py', '--backend', 'ninja'] + (['--failfast'] if failfast else []) + tests + ['--cross-file', cross_file]
+ cmd = mesonlib.python_command + ['run_project_tests.py', '--backend', 'ninja']
+ if failfast:
+ cmd += ['--failfast']
+ cmd += tests
+ cmd += ['--cross-file', cross_file]
+ cmd += ['--'] # args following this are passed directly to meson
+ if cross_only:
+ cmd += ['--native-file', 'cross/none.txt']
return subprocess.call(cmd)
def main():