diff --git a/tests/toolchains/test.sh b/tests/toolchains/test.sh index ff8b1e2..b481961 100755 --- a/tests/toolchains/test.sh +++ b/tests/toolchains/test.sh @@ -85,6 +85,11 @@ for compiler in clang clang++; do continue fi + # compiler-rt does not provide builtins for s390x + if [[ "$(uname -m)" = "s390x" && "$rtlib" = "compiler-rt" ]]; then + continue + fi + test_toolchain $compiler $rtlib $linker $cxxlib $args done done