From c89e34fa3198de464ea8329c8982f392409de278 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Sat, 14 Sep 2024 00:20:57 +0200 Subject: [PATCH] skip flaky addmul LinearAlgebra test Recent failure on AMD64: 2616634a17fdd286e64d16d454bb8077c54d51c9 https://buildkite.com/julialang/julia-master/builds/39998#0191ecf7-1b45-497a-997c-508be066be7f Recent failure on PowerPC: bf6962ca282831a29c6b4e8a2617e63fce623150 https://buildkite.com/julialang/julia-master/builds/39932#0191e368-7016-46a2-9750-10a43bde1329 xref #49966 xref #50071 --- stdlib/LinearAlgebra/test/addmul.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stdlib/LinearAlgebra/test/addmul.jl b/stdlib/LinearAlgebra/test/addmul.jl index 3fff8289242f7..7bb906858ef72 100644 --- a/stdlib/LinearAlgebra/test/addmul.jl +++ b/stdlib/LinearAlgebra/test/addmul.jl @@ -214,7 +214,8 @@ end Cc = copy(C) returned_mat = mul!(C, A, B, zero(eltype(A)), β) @test returned_mat === C - @test collect(returned_mat) ≈ β * Cc rtol=rtol + # This test is skipped because it is flakey, but should be fixed and put back (see #49966) + @test_skip collect(returned_mat) ≈ β * Cc rtol=rtol end end end