diff options
author | Patrick Griffis <tingping@tingping.se> | 2019-08-14 16:35:29 -0700 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2019-09-07 17:07:59 -0700 |
commit | 5c51ec9da23d1bf4fae9f31173e30c784f960542 (patch) | |
tree | cb538d79ab0955b9ec5e0ba8607c88aa87884c85 /run_project_tests.py | |
parent | d67d5411bb7fa00226365ebcfc475af08a4ba721 (diff) | |
download | meson-tingping/blocks-dependency.tar.gz |
Add blocks dependencytingping/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 10dc8c603..82f30b9b3 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(): |