From 7aa60269ae6cecd01831f5ec62d8c582e24de4fd Mon Sep 17 00:00:00 2001 From: Yuki Okushi <huyuumi.dev@gmail.com> Date: Mon, 19 Oct 2020 21:36:58 +0900 Subject: [PATCH] Skip some tests for `mips64(el)-unknown-linux-gnuabi64` --- ci/run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/run.sh b/ci/run.sh index 6fb059d2..cbf644e4 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -121,6 +121,10 @@ else cargo test $opt --manifest-path libc-test/Cargo.toml --target "${TARGET}" + # FIXME: Somehow it now emits errors like: + # `relocation truncated to fit: R_MIPS_GOT_DISP against `fchmod@@GLIBC_2.0'` + if [ "$TARGET" != "mips64el-unknown-linux-gnuabi64" ] && [ "$TARGET" != "mips64-unknown-linux-gnuabi64" ]; then cargo test $opt --features extra_traits --manifest-path libc-test/Cargo.toml \ --target "${TARGET}" + fi fi -- GitLab