Skip to content

Commit

Permalink
Skip test_multithreaded_compute on MoltenVK.
Browse files Browse the repository at this point in the history
Skip `tests::test_multithreaded_compute` in
`examples/hello-compute/src/tests.rs` on MoltenVK for timeouts.
  • Loading branch information
jimblandy committed Aug 29, 2023
1 parent 0842b41 commit f115b76
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/hello-compute/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,13 @@ fn test_multithreaded_compute() {
// https://github.com/gfx-rs/wgpu/issues/3944
.backend_adapter_failure(wgpu::Backends::VULKAN, "swiftshader", true)
// https://github.com/gfx-rs/wgpu/issues/3250
.backend_adapter_failure(wgpu::Backends::GL, "llvmpipe", true),
.backend_adapter_failure(wgpu::Backends::GL, "llvmpipe", true)
.specific_failure(wgpu_test::FailureCase {
backends: Some(wgpu::Backends::VULKAN),
driver: Some("MoltenVK"),
skip: true,
..wgpu_test::FailureCase::default()
}),
|ctx| {
use std::{sync::mpsc, thread, time::Duration};

Expand Down

0 comments on commit f115b76

Please sign in to comment.