diff options
author | Patrick Griffis <tingping@tingping.se> | 2019-08-14 16:35:29 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-23 21:10:00 +0300 |
commit | 1670fca36fcb1a4fe4780e96731e954515501a35 (patch) | |
tree | 66b6186701f4bffc3dcbf79867e385365f95fc78 /run_project_tests.py | |
parent | 6a12f3fc16cde79515ce38040421b1a6743bdbb1 (diff) | |
download | meson-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-x | run_project_tests.py | 4 |
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(): |