Skip to content

Commit 4ae095a

Browse files
committed
don't test SVector for now
1 parent d839714 commit 4ae095a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/testsuite/indexing.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ using Base.Test, GPUArrays.TestSuite
33

44
function run_indexing(Typ)
55
@testset "indexing" begin
6-
for T in (Float32, Int32, SVector{3, Float32})
6+
for T in (Float32, Int32#=, SVector{3, Float32}=#)
77
@testset "Indexing with $T" begin
88
x = rand(T, 32)
99
src = Typ(x)
1010
for (i, xi) in enumerate(x)
1111
@test src[i] == xi
1212
end
13-
@test src[1:3] == x[1:3]
14-
@test src[3:end] == x[3:end]
13+
@test Array(src[1:3]) == x[1:3]
14+
@test Array(src[3:end]) == x[3:end]
1515
end
1616
end
1717

0 commit comments

Comments
 (0)