From 88e13c5f7c8e977ed879cabaa2800c211a536b60 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Thu, 23 Jan 2020 15:23:13 +0000 Subject: 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. --- run_unittests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_unittests.py') 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: -- cgit v1.1