Skip to content

Commit

Permalink
one more broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
kalmarek committed May 16, 2024
1 parent b9020b5 commit 06977b1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/caching_allocations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ end
YY = deepcopy(Y)
_alloc_test(YY, *, Y, Y, 25)
_alloc_test(YY, +, Y, Y, 0)
# SparseArrays calls `Base.unalias` which allocates
@test_broken 1 == 2 # it's actually the one below:
# [2] operate_to!(output::SparseVector{Float64, Int64}, op::typeof(-), args::SparseVector{Float64, Int64})
# @ MutableArithmetics ~/.julia/packages/MutableArithmetics/iovKe/src/interface.jl:391
# _alloc_test(YY, -, Y, Y, 0)

# SparseArrays calls `Base.unalias` which allocates:
_alloc_test(YY, +, YY, Y, 2)
_alloc_test(YY, +, Y, YY, 2)
end
Expand Down

0 comments on commit 06977b1

Please sign in to comment.