From 38013d1554ce5d1b2b0b2acb5042bce94341548f Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Tue, 17 Sep 2024 12:27:38 +0200 Subject: [PATCH] Temporarily mark a test as broken on 1.11. (#529) --- test/private.jl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/private.jl b/test/private.jl index 0567323e..02c25aea 100644 --- a/test/private.jl +++ b/test/private.jl @@ -98,7 +98,12 @@ function private_testsuite(backend, ArrayT) optimize = true, ndrange = (64,), ) end - @test !occursin("gcframe", IR) + if VERSION >= v"1.11-" && Base.JLOptions().check_bounds > 0 + # JuliaGPU/KernelAbstractions.jl#528 + @test_broken !occursin("gcframe", IR) + else + @test !occursin("gcframe", IR) + end end end end