Skip to content

Commit 38013d1

Browse files
authored
Temporarily mark a test as broken on 1.11. (#529)
1 parent 2c049ea commit 38013d1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/private.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,12 @@ function private_testsuite(backend, ArrayT)
9898
optimize = true, ndrange = (64,),
9999
)
100100
end
101-
@test !occursin("gcframe", IR)
101+
if VERSION >= v"1.11-" && Base.JLOptions().check_bounds > 0
102+
# JuliaGPU/KernelAbstractions.jl#528
103+
@test_broken !occursin("gcframe", IR)
104+
else
105+
@test !occursin("gcframe", IR)
106+
end
102107
end
103108
end
104109
end

0 commit comments

Comments
 (0)