aboutsummaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-04-05 15:06:37 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-04-05 15:08:17 -0700
commit25eb86382b4b081c1d3992b9bfd9ebc4ab9b3d10 (patch)
tree3af6c053df0a20e1711521989c7930840321c154 /run_cross_test.py
parent5ce0d9fbbb7c2e009d179c77c6904326fe569fb3 (diff)
downloadmeson-25eb86382b4b081c1d3992b9bfd9ebc4ab9b3d10.zip
meson-25eb86382b4b081c1d3992b9bfd9ebc4ab9b3d10.tar.gz
meson-25eb86382b4b081c1d3992b9bfd9ebc4ab9b3d10.tar.bz2
run_cross_tests: Pass correct argument
I don't konw how the heck this has ever worked, but you know.
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index b2ef6be..8d18123 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -34,7 +34,7 @@ def runtests(cross_file, failfast):
commontests = [('common', gather_tests(Path('test cases', 'common')), False)]
try:
(passing_tests, failing_tests, skipped_tests) = \
- run_tests(commontests, 'meson-cross-test-run', failfast, ['--cross', cross_file])
+ run_tests(commontests, 'meson-cross-test-run', failfast, ['--cross-file', cross_file])
except StopException:
pass
print('\nTotal passed cross tests:', passing_tests)