From a23378d93d3adb1071e378a6adc09917071fef00 Mon Sep 17 00:00:00 2001 From: Valentin Churavy Date: Mon, 20 Feb 2017 13:58:09 +0900 Subject: [PATCH] part of the behaviour test is broken on nvidia --- test/test_behaviour.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/test_behaviour.jl b/test/test_behaviour.jl index 7b31786e..b2784c98 100644 --- a/test/test_behaviour.jl +++ b/test/test_behaviour.jl @@ -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