From f5cc68e4578ae4b4ba6feefcbbb73fdd39e0e879 Mon Sep 17 00:00:00 2001 From: Jesus Checa Hidalgo Date: Feb 15 2022 17:13:09 +0000 Subject: tests: toolchains: skip testing with compiler-rt in s390x --- 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