Commit 64c89120 by Shahbaz Youssefi Committed by Commit Bot

Suppress incomplete texture tests on mac/arm

Bug: chromium:1168370 Change-Id: I5f3e1b76b4efd21f3655d6995293ff4bbbebea17 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2639273Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent 382f016d
......@@ -253,6 +253,9 @@ TEST_P(IncompleteTextureTestES3, IntegerType)
// through the routine which creates a incomplete texture in the ANGLE driver.
ANGLE_SKIP_TEST_IF(IsAdreno() && IsAndroid() && IsOpenGLES());
// http://crbug.com/1168370
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsOpenGL());
constexpr char kVS[] = R"(#version 300 es
in highp vec2 position;
out highp vec2 texCoord;
......@@ -308,6 +311,9 @@ TEST_P(IncompleteTextureTestES3, UnsignedIntegerType)
// through the routine which creates a incomplete texture in the ANGLE driver.
ANGLE_SKIP_TEST_IF(IsAdreno() && IsAndroid() && IsOpenGLES());
// http://crbug.com/1168370
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsOpenGL());
constexpr char kVS[] = R"(#version 300 es
in highp vec2 position;
out highp vec2 texCoord;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment