From 3b71e65658cdb3dd5c8455241e3a5b8576b5b1dc Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Thu, 7 Feb 2019 13:54:55 +0000 Subject: [PATCH] Make CopyTests_T2B.Texture2DArrayMip suppression more precise BUG=dawn:101 Change-Id: I35b0980126e546e9846938475496ab20b5f06254 Reviewed-on: https://dawn-review.googlesource.com/c/4420 Reviewed-by: Corentin Wallez Commit-Queue: Corentin Wallez --- src/tests/end2end/CopyTests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/end2end/CopyTests.cpp b/src/tests/end2end/CopyTests.cpp index 99075fd979..99bed81863 100644 --- a/src/tests/end2end/CopyTests.cpp +++ b/src/tests/end2end/CopyTests.cpp @@ -397,7 +397,8 @@ TEST_P(CopyTests_T2B, Texture2DArrayRegion) { // Test that copying texture 2D array mips with 256-byte aligned sizes works TEST_P(CopyTests_T2B, Texture2DArrayMip) { // TODO(b-brber): Figure out why this test fails on Intel Linux. - DAWN_SKIP_TEST_IF(IsVulkan() && IsIntel()); + // See https://bugs.chromium.org/p/dawn/issues/detail?id=101 + DAWN_SKIP_TEST_IF(IsLinux() && IsVulkan() && IsIntel()); constexpr uint32_t kWidth = 256; constexpr uint32_t kHeight = 128; constexpr uint32_t kLayers = 6u;