dev-util/glslang: skip tests on arm

The tests rely on an error message which doesn't match precisely on arm.

Bug: https://github.com/KhronosGroup/glslang/issues/4180
Closes: https://bugs.gentoo.org/977176
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-06-22 21:56:24 +01:00
parent 64af48de2d
commit aeee6474cd
2 changed files with 16 additions and 0 deletions

View File

@@ -36,3 +36,11 @@ multilib_src_configure() {
)
cmake_src_configure
}
multilib_src_test() {
local CMAKE_SKIP_TESTS=(
# bug #977176 (https://github.com/KhronosGroup/glslang/issues/4180)
$(usev arm 'glslang-testsuite')
)
cmake_src_test
}

View File

@@ -36,3 +36,11 @@ multilib_src_configure() {
)
cmake_src_configure
}
multilib_src_test() {
local CMAKE_SKIP_TESTS=(
# bug #977176 (https://github.com/KhronosGroup/glslang/issues/4180)
$(usev arm 'glslang-testsuite')
)
cmake_src_test
}