Skip to content

Commit

Permalink
[dawn] Suppress more multithread device dropping tests.
Browse files Browse the repository at this point in the history
- Suppressing these tests because they are crashing in new VVL
  rolls. More details in the bug.

Bug: 383339997
Change-Id: Id6fb944b17bad26007397193ccb5b6a4f962a8a2
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/220134
Auto-Submit: Loko Kung <[email protected]>
Commit-Queue: Loko Kung <[email protected]>
Reviewed-by: Kai Ninomiya <[email protected]>
  • Loading branch information
lokokung authored and Dawn LUCI CQ committed Dec 20, 2024
1 parent 15083f2 commit 158ed9a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/dawn/tests/end2end/MultithreadTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ TEST_P(MultithreadTests, Device_DroppedOnAnotherThread) {
// TODO(crbug.com/dawn/1779): This test seems to cause flakiness in other sampling tests on
// NVIDIA.
DAWN_SUPPRESS_TEST_IF(IsD3D12() && IsNvidia());

// TODO(crbug.com/42240870): Flaky on Linux TSAN Release
// TODO(crbug.com/383339997): Failing on Linux/Vulkan.
DAWN_SUPPRESS_TEST_IF(IsLinux() && IsVulkan());
DAWN_SUPPRESS_TEST_IF(IsLinux() && IsVulkan() && IsTsan());
// TODO(crbug.com/383339997): Failing on Linux/Vulkan with VVL.
DAWN_SUPPRESS_TEST_IF(IsLinux() && IsVulkan() && IsBackendValidationEnabled());

std::vector<wgpu::Device> devices(5);

Expand Down Expand Up @@ -159,6 +159,9 @@ TEST_P(MultithreadTests, Device_DroppedInCallback_OnAnotherThread) {
// NVIDIA.
DAWN_SUPPRESS_TEST_IF(IsD3D12() && IsNvidia());

// TODO(crbug.com/383339997): Failing on Linux/Vulkan with VVL.
DAWN_SUPPRESS_TEST_IF(IsLinux() && IsVulkan() && IsBackendValidationEnabled());

std::vector<wgpu::Device> devices(10);

// Create devices.
Expand Down Expand Up @@ -208,6 +211,9 @@ TEST_P(MultithreadTests, Device_WaitForDroppedInAnotherThread) {
// NVIDIA.
DAWN_SUPPRESS_TEST_IF(IsD3D12() && IsNvidia());

// TODO(crbug.com/383339997): Failing on Linux/Vulkan with VVL.
DAWN_SUPPRESS_TEST_IF(IsLinux() && IsVulkan() && IsBackendValidationEnabled());

enum class Step {
Begin,
Waiting,
Expand Down

0 comments on commit 158ed9a

Please sign in to comment.