From 2d98236eef2886e63b2d4a1fe818db47667edfaf Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Tue, 20 Jun 2023 16:58:52 +0100 Subject: [PATCH] Disable vld2q_dup_f32 test in CI This is broken due to rust-lang/rust#112460. --- ci/run.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/run.sh b/ci/run.sh index 1c8e219e6b..0e33de89db 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -76,6 +76,11 @@ cargo_test() { # qemu has an erratic behavior on those tests powerpc64*) cmd="$cmd --skip test_vec_lde_u16 --skip test_vec_lde_u32 --skip test_vec_expte" + ;; + # Miscompilation: https://github.com/rust-lang/rust/issues/112460 + arm*) + cmd="$cmd --skip vld2q_dup_f32" + ;; esac if [ "$SKIP_TESTS" != "" ]; then