diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-09 21:35:43 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-09 21:35:43 +0300 |
commit | b423109d24a7d56631a41570f1605710c03016ba (patch) | |
tree | 70c3ffd91117bf3b429e3edd57c8565ccf94bb2e /mesonbuild/mtest.py | |
parent | 95c38b1a351dd329f8193e19671cde199c18bb23 (diff) | |
download | meson-extisnotcross.tar.gz |
Renamed test serialisation from is_cross to is_cross_built for clarity.extisnotcross
Diffstat (limited to 'mesonbuild/mtest.py')
-rw-r--r-- | mesonbuild/mtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index 2520ae822..f0ba12222 100644 --- a/mesonbuild/mtest.py +++ b/mesonbuild/mtest.py @@ -195,10 +195,10 @@ class TestHarness: def run_single_test(self, wrap, test): if test.fname[0].endswith('.jar'): cmd = ['java', '-jar'] + test.fname - elif not test.is_cross and run_with_mono(test.fname[0]): + elif not test.is_cross_built and run_with_mono(test.fname[0]): cmd = ['mono'] + test.fname else: - if test.is_cross: + if test.is_cross_built: if test.exe_runner is None: # Can not run test on cross compiled executable # because there is no execute wrapper. |