Skip to content

Commit 229b109

Browse files
committed
Auto merge of #1941 - JohnTitor:mips64, r=JohnTitor
Revive tests for MIPS64
2 parents e0a4fb0 + 003d6ef commit 229b109

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/bors.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ jobs:
116116
i686-unknown-linux-musl,
117117
mips-unknown-linux-gnu,
118118
mips-unknown-linux-musl,
119-
# FIXME: Disabled because of the `relocation truncated to fit` error
120-
# mips64-unknown-linux-gnuabi64,
121-
# mips64el-unknown-linux-gnuabi64,
119+
mips64-unknown-linux-gnuabi64,
120+
mips64el-unknown-linux-gnuabi64,
122121
mipsel-unknown-linux-musl,
123122
powerpc-unknown-linux-gnu,
124123
powerpc64-unknown-linux-gnu,

ci/run.sh

-4
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,6 @@ else
121121

122122
cargo test $opt --manifest-path libc-test/Cargo.toml --target "${TARGET}"
123123

124-
# FIXME: Somehow it now emits errors like:
125-
# `relocation truncated to fit: R_MIPS_GOT_DISP against `fchmod@@GLIBC_2.0'`
126-
if [ "$TARGET" != "mips64el-unknown-linux-gnuabi64" ] && [ "$TARGET" != "mips64-unknown-linux-gnuabi64" ]; then
127124
cargo test $opt --features extra_traits --manifest-path libc-test/Cargo.toml \
128125
--target "${TARGET}"
129-
fi
130126
fi

0 commit comments

Comments
 (0)