Skip to content

Commit

Permalink
Temporarily mark a test as broken on 1.11. (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Sep 17, 2024
1 parent 2c049ea commit 38013d1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/private.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 38013d1

Please sign in to comment.