Skip to content

Commit

Permalink
set failing test to broken on nightly in test_inplacelu
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fu committed Dec 12, 2024
1 parent fe4bf4f commit edf7801
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/test_inplacelu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,13 @@ function runtests()
@test m2 == 0
m3 = @allocated inplacelu_piv_marray(10, Dual64)
@test m3 == 0

m4 = @allocated inplacelu_piv_stridearray(10, Dual64)
@test m4 == 0
if VERSION<v"1.11.999"
@test m4 == 0
else
@test_broken m4 == 0
end
return true
end

Expand Down

0 comments on commit edf7801

Please sign in to comment.