From 01a3e9b6383f2169d46e64488a4adb5a0273c15c Mon Sep 17 00:00:00 2001 From: Bryan Bernhart Date: Thu, 7 Feb 2019 00:42:41 +0000 Subject: [PATCH] Disable copy test failing on Intel Linux. BUG=dawn:101 TEST=dawn_end2end_tests Change-Id: Ib2eefeabc1a4e5326dcf7e1ba085e8cf979f4d3a Reviewed-on: https://dawn-review.googlesource.com/c/4400 Reviewed-by: Bryan Bernhart Reviewed-by: Kai Ninomiya Commit-Queue: Kai Ninomiya --- src/tests/end2end/CopyTests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/end2end/CopyTests.cpp b/src/tests/end2end/CopyTests.cpp index 7b03ab2b12..99075fd979 100644 --- a/src/tests/end2end/CopyTests.cpp +++ b/src/tests/end2end/CopyTests.cpp @@ -396,6 +396,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()); constexpr uint32_t kWidth = 256; constexpr uint32_t kHeight = 128; constexpr uint32_t kLayers = 6u;