From de0800ed2909fb728fef6c774a0baef776ee1065 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 10 Nov 2024 14:26:11 +0100 Subject: [PATCH 1/2] remove test --skip that references a long-closed issue --- ci/run.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/run.sh b/ci/run.sh index eb42a0ddaa..dc9fe296dc 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -86,10 +86,6 @@ cargo_test() { 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 From 8032099c41f85d3690aa3b33cac55688e6a43f94 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 10 Nov 2024 14:27:06 +0100 Subject: [PATCH 2/2] move wasm comment to a better place --- ci/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/run.sh b/ci/run.sh index dc9fe296dc..8cdc1d411a 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -75,10 +75,10 @@ cargo_test() { cmd="$cmd ${subcmd} --target=$TARGET $1" cmd="$cmd -- $2" - # wasm targets can't catch panics so if a test failures make sure the test - # harness isn't trying to capture output, otherwise we won't get any useful - # output. case ${TARGET} in + # wasm targets can't catch panics so if a test failures make sure the test + # harness isn't trying to capture output, otherwise we won't get any useful + # output. wasm32*) cmd="$cmd --nocapture" ;;