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 849f333
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ By @Valaphee in [#3402](https://github.com/gfx-rs/wgpu/pull/3402)
- DX12 doesn't support `Features::POLYGON_MODE_POINT``. By @teoxoy in [#4032](https://github.com/gfx-rs/wgpu/pull/4032).
- Set `Features::VERTEX_WRITABLE_STORAGE` based on the right feature level. By @teoxoy in [#4033](https://github.com/gfx-rs/wgpu/pull/4033).

#### Metal

- Skip `test_multithreaded_compute` on MoltenVK. By @jimblandy in [#4096](https://github.com/gfx-rs/wgpu/pull/4096).

### Documentation

- Add an overview of `RenderPass` and how render state works. By @kpreid in [#4055](https://github.com/gfx-rs/wgpu/pull/4055)
Expand Down
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 849f333

Please sign in to comment.