Skip to content

Commit 52ed773

Browse files
committed
Expect wgpu_gpu::immediates::render_pass_test to fail on RADV.
Add an `expect_fail` clause to `wgpu_gpu::immediates::render_pass_test` blaming it on [wgpu#8612], which looks like a Mesa code generation bug. [wgpu#8612]: gfx-rs#8612
1 parent 4e58833 commit 52ed773

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tests/tests/wgpu-gpu/immediates.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,14 @@ static RENDER_PASS_TEST: GpuTestConfiguration = GpuTestConfiguration::new()
167167
.limits(wgpu::Limits {
168168
max_immediate_size: 64,
169169
..Default::default()
170+
})
171+
// https://github.com/gfx-rs/wgpu/issues/8612
172+
.expect_fail(wgpu_test::FailureCase {
173+
backends: Some(wgpu::Backends::VULKAN),
174+
driver: Some("radv"),
175+
reasons: vec![wgpu_test::FailureReason::panic()
176+
.with_message("assertion `left == right` failed")],
177+
..Default::default()
170178
}),
171179
)
172180
.run_async(move |ctx| async move {

0 commit comments

Comments
 (0)