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_cross_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_cross_test.py') diff --git a/run_cross_test.py b/run_cross_test.py index 1e67876..269eb01 100755 --- a/run_cross_test.py +++ b/run_cross_test.py @@ -26,7 +26,7 @@ from mesonbuild.coredata import version as meson_version def runtests(cross_file, failfast): - tests = ['--only', 'common'] + tests = ['--only', 'common', 'native'] cmd = mesonlib.python_command + ['run_project_tests.py', '--backend', 'ninja'] + (['--failfast'] if failfast else []) + tests + ['--cross-file', cross_file] return subprocess.call(cmd) -- cgit v1.1