tests: toolchains: skip testing with compiler-rt in s390x

This commit is contained in:
Jesus Checa Hidalgo 2022-02-15 17:38:17 +01:00
parent 75406a880d
commit f5cc68e457
1 changed files with 5 additions and 0 deletions

View File

@ -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