diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2020-01-23 15:23:13 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2020-09-10 07:20:41 +0000 |
commit | 88e13c5f7c8e977ed879cabaa2800c211a536b60 (patch) | |
tree | 3e168d5b347d8925cc78885de845febc2cc92fa4 /run_unittests.py | |
parent | 79b2eeb1baae4097335997c191e1eb9626f27ce5 (diff) | |
download | meson-88e13c5f7c8e977ed879cabaa2800c211a536b60.zip meson-88e13c5f7c8e977ed879cabaa2800c211a536b60.tar.gz meson-88e13c5f7c8e977ed879cabaa2800c211a536b60.tar.bz2 |
Split tests out from 'common' which require a native compiler
Split out tests (and parts of tests) which require a native compiler
from the 'common' suite to a new suite called 'native', so we can
selectively avoid running those tests when only a cross-compiler is
available.
Also move test '211 cmake module' to 'cmake' suite, since it appears
that the way we use cmake requires a native compiler.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index efe1e29..b76e489 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -6928,7 +6928,7 @@ class LinuxlikeTests(BasePlatformTests): ''' Test that we produce the correct dependencies when a program is overridden with an executable. ''' - testdir = os.path.join(self.common_test_dir, '201 override with exe') + testdir = os.path.join(self.src_root, 'test cases', 'native', '201 override with exe') self.init(testdir) with open(os.path.join(self.builddir, 'build.ninja')) as bfile: for line in bfile: |