Skip to content

Commit

Permalink
ignore SwiftShader as well
Browse files Browse the repository at this point in the history
  • Loading branch information
teoxoy committed Dec 22, 2022
1 parent 24407ed commit 580dd06
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions wgpu/tests/shader/zero_init_workgroup_mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,20 @@ fn zero_init_workgroup_mem() {
TestParameters::default()
.downlevel_flags(DownlevelFlags::COMPUTE_SHADERS)
.limits(Limits::downlevel_defaults())
// remove once we get to https://github.com/gfx-rs/wgpu/issues/3193 or
// https://github.com/gfx-rs/wgpu/issues/3160
.specific_failure(
Some(Backends::DX12),
Some(5140),
Some("Microsoft Basic Render Driver"),
true,
)
// this one is flakey
.specific_failure(
Some(Backends::VULKAN),
Some(6880),
Some("SwiftShader"),
true,
),
zero_init_workgroup_mem_impl,
);
Expand Down

0 comments on commit 580dd06

Please sign in to comment.