diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-05-09 16:32:36 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-05-09 16:32:36 +0300 |
commit | 8be84a4a7cb3ed81ef06c9d536ec7223150c9373 (patch) | |
tree | b08673b41bb8a093158b95de349f49223dfe2862 /meson_test.py | |
parent | 572587f5cef0741cf68d5842d503ddb764e3d47b (diff) | |
download | meson-8be84a4a7cb3ed81ef06c9d536ec7223150c9373.zip meson-8be84a4a7cb3ed81ef06c9d536ec7223150c9373.tar.gz meson-8be84a4a7cb3ed81ef06c9d536ec7223150c9373.tar.bz2 |
Some more cross tweaking.
Diffstat (limited to 'meson_test.py')
-rwxr-xr-x | meson_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_test.py b/meson_test.py index 2807dde..71a577e 100755 --- a/meson_test.py +++ b/meson_test.py @@ -70,7 +70,7 @@ def run_single_test(wrap, test): global tests_failed if test.fname[0].endswith('.jar'): cmd = ['java', '-jar'] + test.fname - elif run_with_mono(test.fname[0]): + elif not test.is_cross and run_with_mono(test.fname[0]): cmd = ['mono'] + test.fname else: if test.is_cross: |