Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstphrbrns authored and tlnagy committed Jan 19, 2024
1 parent 66a0070 commit 14e5eb9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,9 @@ end
for size in 64:164
out = Vector{typ}(undef, size * planes)
a=reduce(vcat,[fill(typ(x),size) for x in 1:planes])
TiffImages.deplane_simd!(out, a, Val(planes))
@test out == TiffImages.deplane_slow(a, planes)
b=copy(a)
TiffImages.deplane!(out, a, planes)
@test a == TiffImages.deplane_slow(b, planes)
end
end
end
Expand Down

0 comments on commit 14e5eb9

Please sign in to comment.