Skip to content

Commit df49b7c

Browse files
committed
for now only test tuple of symbols
1 parent 08b323a commit df49b7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/base/array.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ end
157157
end
158158

159159
# symbols and tuples thereof
160-
let a = CuArray([:a])
161-
b = unsafe_wrap(CuArray, pointer(a), 1)
162-
@test typeof(b) <: CuArray{Symbol,1}
163-
@test size(b) == (1,)
164-
end
160+
# let a = CuArray([:a])
161+
# b = unsafe_wrap(CuArray, pointer(a), 1)
162+
# @test typeof(b) <: CuArray{Symbol,1}
163+
# @test size(b) == (1,)
164+
# end
165165
let a = CuArray([(:a,:b)])
166166
b = unsafe_wrap(CuArray, pointer(a), 1)
167167
@test typeof(b) <: CuArray{Tuple{Symbol,Symbol},1}

0 commit comments

Comments
 (0)