summaryrefslogtreecommitdiff
path: root/test cases/frameworks
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-06-06 21:45:21 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-06-07 16:40:52 -0400
commite2e6fd2e61a0b284d47a55dfd52e7e4f485d683d (patch)
treef7b3245d4b481fe9350de456f51490005dd5ab0c /test cases/frameworks
parent95ee4d7d1360afd13532bd4663c776a1fce5980d (diff)
downloadmeson-e2e6fd2e61a0b284d47a55dfd52e7e4f485d683d.tar.gz
tests: update llvm version exclusions for hopefully the last time
This is now fixed upstream and expected to be backported to the next point release.
Diffstat (limited to 'test cases/frameworks')
-rw-r--r--test cases/frameworks/15 llvm/meson.build10
1 files changed, 4 insertions, 6 deletions
diff --git a/test cases/frameworks/15 llvm/meson.build b/test cases/frameworks/15 llvm/meson.build
index 806ba7bc3..3f0e29859 100644
--- a/test cases/frameworks/15 llvm/meson.build
+++ b/test cases/frameworks/15 llvm/meson.build
@@ -25,9 +25,8 @@ if(method == 'combination')
method : 'config-tool',
)
- # Bump the version along till the LLVM bug is fixed
- if static and d.version().startswith('16.0') and d.version()[5].to_int() <= 4
- message('Skipping modules with cmake, see https://github.com/mesonbuild/meson/issues/11642')
+ if static and d.version().startswith('16.0') and d.version()[5].to_int() <= 6
+ message('Skipping modules with cmake due to an LLVM bug, see https://github.com/mesonbuild/meson/issues/11642')
llvm_cm_dep = dependency(
'llvm',
required : false,
@@ -82,9 +81,8 @@ else
dep_tinfo = cpp.find_library('tinfo', required: false)
endif
- # Bump the version along till the LLVM bug is fixed
- if static and method == 'cmake' and d.version().startswith('16.0') and d.version()[5].to_int() <= 4
- message('Skipping modules with cmake, see https://github.com/mesonbuild/meson/issues/11642')
+ if static and method == 'cmake' and d.version().startswith('16.0') and d.version()[5].to_int() <= 5
+ message('Skipping modules with cmake due to an LLVM bug, see https://github.com/mesonbuild/meson/issues/11642')
llvm_dep = dependency(
'llvm',
required : false,