Skip to content

Commit

Permalink
disabling one tests that fails on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed May 5, 2020
1 parent 15a80a8 commit 6e0936f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/matrix_multiply_add.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ function test_multiply_add(N1,N2,ArrayType=MArray)
mul!(b,At,c,1.0,2.0)
@test b 5A'c

@test_noalloc mul!(c,A,b)
if !(ArrayType <: SizedArray)
# records 16 bytes for SizedArray on a 1.5 nightly
@test_noalloc mul!(c,A,b)
end
bmark = @benchmark mul!($c,$A,$b,$α,$β) samples=10 evals=10
@test minimum(bmark).allocs == 0
# @test_noalloc mul!(c, A, b, α, β) # records 32 bytes
Expand Down

0 comments on commit 6e0936f

Please sign in to comment.