Skip to content

Commit 66f4aef

Browse files
try 32-bit tests w/o linspace [skip av]
1 parent c7311f7 commit 66f4aef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/ranges.jl

+6-6
Original file line numberDiff line numberDiff line change
@@ -344,12 +344,12 @@ for T = (Float32, Float64,), i = 1:2^15, n = 1:5
344344
stop = start + (n-1)*step
345345
r = start:step:stop
346346
@test n == length(r)
347-
@test_skip start == first(r)
348-
@test_skip stop == last(r)
349-
l = linspace(start,stop,n)
350-
@test n == length(l)
351-
@test_skip start == first(l)
352-
@test_skip stop == last(l)
347+
# @test_skip start == first(r)
348+
# @test_skip stop == last(r)
349+
# l = linspace(start,stop,n)
350+
# @test n == length(l)
351+
# @test_skip start == first(l)
352+
# @test_skip stop == last(l)
353353
end
354354

355355
# linspace & ranges with very small endpoints

0 commit comments

Comments
 (0)