aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2019-08-14 16:35:29 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2019-09-23 21:10:00 +0300
commit1670fca36fcb1a4fe4780e96731e954515501a35 (patch)
tree66b6186701f4bffc3dcbf79867e385365f95fc78 /run_project_tests.py
parent6a12f3fc16cde79515ce38040421b1a6743bdbb1 (diff)
downloadmeson-1670fca36fcb1a4fe4780e96731e954515501a35.zip
meson-1670fca36fcb1a4fe4780e96731e954515501a35.tar.gz
meson-1670fca36fcb1a4fe4780e96731e954515501a35.tar.bz2
Add blocks dependency
This allows easily enabling the blocks clang extension.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 10dc8c6..82f30b9 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -523,6 +523,10 @@ def skippable(suite, test):
if test.endswith('14 fortran links c'):
return True
+ # Blocks are not supported on all compilers
+ if test.endswith('29 blocks'):
+ return True
+
# No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed
if mesonlib.is_linux():