We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e5e6a commit c5b425dCopy full SHA for c5b425d
test/mtl/metal.jl
@@ -146,9 +146,9 @@ let ev = MTLEvent(dev)
146
end
147
148
let ev = MTLSharedEvent(dev)
149
- # XXX: this returns nothing, which seems like a Metal bug,
150
- # especially because it does return a device under validation.
151
- #@test ev.device == dev
+ # This returns nothing, which aligns with the description from the Metal SDK headers.
+ # Interestingly, under validation, a device is returned.
+ @test ev.device === nothing broken=shader_validation
152
@test ev.label === nothing
153
ev.label = "MyEvent"
154
@test ev.label == "MyEvent"
0 commit comments