Skip to content

Commit

Permalink
Merge pull request #132 from JuliaGPU/vc/nv_broken
Browse files Browse the repository at this point in the history
part of the behaviour test is broken on nvidia
  • Loading branch information
vchuravy authored Feb 20, 2017
2 parents 538e82c + a23378d commit 409cb88
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test_behaviour.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ info(
queue(kern, str_len, nothing, out_buf)
h = cl.read(queue, out_buf)

@test cl.CLString(h) == hello_world_str
if device[:platform][:name] == "NVIDIA CUDA"
@test_broken cl.CLString(h) == hello_world_str
else
@test cl.CLString(h) == hello_world_str
end
end
end

Expand Down

0 comments on commit 409cb88

Please sign in to comment.