Skip to content

Commit

Permalink
Mask out multithreaded-compute on llvmpipe
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Oct 23, 2023
1 parent 629be78 commit b1f182c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/hello-compute/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ static MULTITHREADED_COMPUTE: GpuTestConfiguration = GpuTestConfiguration::new()
TestParameters::default()
.downlevel_flags(wgpu::DownlevelFlags::COMPUTE_SHADERS)
.limits(wgpu::Limits::downlevel_defaults())
.skip(FailureCase::adapter("V3D")),
.skip(FailureCase::adapter("V3D"))
// Segfaults on linux CI only https://github.com/gfx-rs/wgpu/issues/4285
.skip(FailureCase::backend_adapter(wgpu::Backends::GL, "llvmpipe")),
)
.run_sync(|ctx| {
use std::{sync::mpsc, sync::Arc, thread, time::Duration};
Expand Down

0 comments on commit b1f182c

Please sign in to comment.