From e06423a747535699ae6b54737f478ba49508fa79 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 13 Apr 2022 14:25:17 -0700 Subject: [PATCH] wgpu/examples/shadow: Don't run on llvmpipe. --- wgpu/examples/shadow/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wgpu/examples/shadow/main.rs b/wgpu/examples/shadow/main.rs index 287c18b6bb..64899d818d 100644 --- a/wgpu/examples/shadow/main.rs +++ b/wgpu/examples/shadow/main.rs @@ -855,7 +855,10 @@ fn shadow() { optional_features: wgpu::Features::default(), base_test_parameters: framework::test_common::TestParameters::default() .downlevel_flags(wgpu::DownlevelFlags::COMPARISON_SAMPLERS) - .specific_failure(Some(wgpu::Backends::VULKAN), None, Some("V3D"), false), // rpi4 on VK doesn't work: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3916 + // rpi4 on VK doesn't work: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3916 + .specific_failure(Some(wgpu::Backends::VULKAN), None, Some("V3D"), false) + // llvmpipe versions in CI are flaky: https://github.com/gfx-rs/wgpu/issues/2594 + .specific_failure(Some(wgpu::Backends::VULKAN), None, Some("llvmpipe"), true), tolerance: 2, max_outliers: 500, // bounded by rpi4 });