From eb53af192fcbc877235998fbee9ab5bd468297e0 Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Thu, 11 May 2023 18:19:34 +0000 Subject: [PATCH] d3d11: suppress two TextureViewRenderingTest with Intel D3D11 Bug: dawn:1812 Change-Id: I22d28af0e299e8368f485bbd6117bb0a6778ef35 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/132500 Reviewed-by: Austin Eng Commit-Queue: Peng Huang Kokoro: Kokoro --- src/dawn/tests/end2end/TextureViewTests.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/dawn/tests/end2end/TextureViewTests.cpp b/src/dawn/tests/end2end/TextureViewTests.cpp index 15c2e26fc6..5743f20e11 100644 --- a/src/dawn/tests/end2end/TextureViewTests.cpp +++ b/src/dawn/tests/end2end/TextureViewTests.cpp @@ -543,6 +543,9 @@ TEST_P(TextureViewSamplingTest, TextureCubeMapViewOnPartOfTexture) { // Test sampling from a cube map texture view that covers the last layer of a 2D array texture. TEST_P(TextureViewSamplingTest, TextureCubeMapViewCoveringLastLayer) { + // TODO(dawn:1812): the test fails with DXGI_ERROR_DEVICE_HUNG on Intel D3D11 driver. + DAWN_SUPPRESS_TEST_IF(IsD3D11() && IsIntel()); + constexpr uint32_t kTotalLayers = 10; constexpr uint32_t kBaseLayer = 4; TextureCubeMapTest(kTotalLayers, kBaseLayer, kTotalLayers - kBaseLayer, false); @@ -699,6 +702,9 @@ TEST_P(TextureViewRenderingTest, Texture2DViewOnALevelOfRectangular2DTextureAsCo // Test rendering into a 2D texture view created on a layer of a 2D array texture. TEST_P(TextureViewRenderingTest, Texture2DViewOnALayerOf2DArrayTextureAsColorAttachment) { + // TODO(dawn:1812): the test fails with DXGI_ERROR_DEVICE_HUNG on Intel D3D11 driver. + DAWN_SUPPRESS_TEST_IF(IsD3D11() && IsIntel()); + constexpr uint32_t kMipLevels = 1; constexpr uint32_t kBaseLevel = 0; constexpr uint32_t kLayers = 10;