Skip to content

Commit 099eafc

Browse files
committed
Skip broken test in Julia v1.6
1 parent ed2db6c commit 099eafc

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

test/test_blockindices.jl

+9-3
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,15 @@ end
418418
@test eltype(blockedrange(Base.OneTo(elt(3)))) === elt
419419
@test eltype(blockedrange(elt(1):elt(3))) === elt
420420

421-
r = blockedrange(Fill(elt(2), 3))
422-
@test r isa BlockedUnitRange{elt,<:StepRangeLen{elt}}
423-
@test eltype(r) === elt
421+
if VERSION >= v"1.7"
422+
# `cumsum(::Fill)` doesn't preserve element types properly.
423+
# That issue was fixed by this fix to `StepRangeLen`:
424+
# https://github.com/JuliaLang/julia/pull/41619
425+
# which is only available in Julia v1.7 and higher.
426+
r = blockedrange(Fill(elt(2), 3))
427+
@test r isa BlockedUnitRange{elt,<:StepRangeLen{elt}}
428+
@test eltype(r) === elt
429+
end
424430

425431
r = blockedrange(Ones(elt, 3))
426432
@test r isa BlockedUnitRange{elt}

0 commit comments

Comments
 (0)