Skip to content

Commit

Permalink
Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Nov 22, 2023
1 parent 8bad893 commit 09b5720
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions tests/src/params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ impl TestInfo {
.map(|(name, _)| name)
.collect();
let names_text = names.join(" & ");
let flaky_text = if flaky { " (flaky)" } else { "" };
let flaky_text = if flaky { " Flaky " } else { " " };

format!("Executed Failure: {names_text}{flaky_text}")
format!("Executed{flaky_text}Failure: {names_text}")
} else {
String::from("Executed")
};
Expand Down
16 changes: 6 additions & 10 deletions tests/tests/shader/zero_init_workgroup_mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,12 @@ static ZERO_INIT_WORKGROUP_MEMORY: GpuTestConfiguration = GpuTestConfiguration::
.downlevel_flags(DownlevelFlags::COMPUTE_SHADERS)
.limits(Limits::downlevel_defaults())
// remove once we get to https://github.com/gfx-rs/wgpu/issues/3193
.expect_fail(
FailureCase {
backends: Some(Backends::DX12),
vendor: Some(5140),
adapter: Some("Microsoft Basic Render Driver"),
..FailureCase::default()
}
.validation_error("OBJECT_DELETED_WHILE_STILL_IN_USE")
.flaky(),
),
.skip(FailureCase {
backends: Some(Backends::DX12),
vendor: Some(5140),
adapter: Some("Microsoft Basic Render Driver"),
..FailureCase::default()
}),
)
.run_sync(|ctx| {
let bgl = ctx
Expand Down

0 comments on commit 09b5720

Please sign in to comment.