aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-10-22 07:21:14 -0700
committerGitHub <noreply@github.com>2020-10-22 17:21:14 +0300
commite8399c8c6e237f82c194e0a917767c0dc5e92062 (patch)
treef3b50b4dbe0ab5d016ad666b731594eab1183b19 /run_project_tests.py
parente7009d439c8e4e3d5497a6911b63fa6c47bde6b8 (diff)
downloadmeson-e8399c8c6e237f82c194e0a917767c0dc5e92062.zip
meson-e8399c8c6e237f82c194e0a917767c0dc5e92062.tar.gz
meson-e8399c8c6e237f82c194e0a917767c0dc5e92062.tar.bz2
depenencies/llvm: Handle llvm-config --shared-mode failing (#7379)
* depenencies/llvm: Handle llvm-config --shared-mode failing Fixes: #7371 Fixes: #7878 * test cases/llvm: Refactor to use test.json Instead of trying to cover everything internally
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 037ba42..acd8590 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -865,6 +865,12 @@ def skippable(suite, test):
if any([x in test for x in ['16 sdl', '17 mpi']]):
return True
+ # We test cmake, and llvm-config. Some linux spins don't provide cmake or
+ # don't provide either the static or shared llvm libraries (fedora and
+ # opensuse only have the dynamic ones, for example).
+ if test.endswith('15 llvm'):
+ return True
+
# No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed
if mesonlib.is_linux():