Commit 1075b47a by Brian Sheedy Committed by Commit Bot

Disable more ARM-based Mac tests

Disables the following tests due to them failing on the ARM-based Mac DTKs: * GLSLTest_ES3.GLVertexIDIntegerTextureDrawArrays/ES3_OpenGL * OcclusionQueriesTest.MultiQueries/ES2_Metal * TransformFeedbackTest.TwoUnreferencedInFragShader/ES3_OpenGL * WebGL2CompatibilityTest.CopyMip1ToMip0/ES3_OpenGL Bug: chromium:1132295 Change-Id: I557e3c978d884e9beeafb4f43676271edcd36a87 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2472532Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent aaef5869
...@@ -824,6 +824,8 @@ TEST_P(GLSLTest_ES3, GLVertexIDIntegerTextureDrawArrays) ...@@ -824,6 +824,8 @@ TEST_P(GLSLTest_ES3, GLVertexIDIntegerTextureDrawArrays)
{ {
// http://anglebug.com/4092 // http://anglebug.com/4092
ANGLE_SKIP_TEST_IF(isSwiftshader()); ANGLE_SKIP_TEST_IF(isSwiftshader());
// TODO(crbug.com/1132295): Failing on ARM-based Apple DTKs.
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsDesktopOpenGL());
// Have to set a large point size because the window size is much larger than the texture // Have to set a large point size because the window size is much larger than the texture
constexpr char kVS[] = R"(#version 300 es constexpr char kVS[] = R"(#version 300 es
flat out highp int vVertexID; flat out highp int vVertexID;
......
...@@ -393,6 +393,7 @@ TEST_P(OcclusionQueriesTest, MultiQueries) ...@@ -393,6 +393,7 @@ TEST_P(OcclusionQueriesTest, MultiQueries)
// TODO(crbug.com/1132295): Failing on Apple DTK. // TODO(crbug.com/1132295): Failing on Apple DTK.
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsDesktopOpenGL()); ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsDesktopOpenGL());
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsMetal());
GLuint query[5] = {}; GLuint query[5] = {};
glGenQueriesEXT(5, query); glGenQueriesEXT(5, query);
......
...@@ -877,6 +877,8 @@ TEST_P(TransformFeedbackTest, TwoUnreferencedInFragShader) ...@@ -877,6 +877,8 @@ TEST_P(TransformFeedbackTest, TwoUnreferencedInFragShader)
{ {
// TODO(anglebug.com/4533) This fails after the upgrade to the 26.20.100.7870 driver. // TODO(anglebug.com/4533) This fails after the upgrade to the 26.20.100.7870 driver.
ANGLE_SKIP_TEST_IF(IsWindows() && IsIntel() && IsVulkan()); ANGLE_SKIP_TEST_IF(IsWindows() && IsIntel() && IsVulkan());
// TODO(crbug.com/1132295): Failing on ARM-based Apple DTKs.
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsDesktopOpenGL());
// TODO(jmadill): With points and rasterizer discard? // TODO(jmadill): With points and rasterizer discard?
constexpr char kVS[] = constexpr char kVS[] =
......
...@@ -2792,6 +2792,9 @@ TEST_P(WebGL2CompatibilityTest, CopyMip1ToMip0) ...@@ -2792,6 +2792,9 @@ TEST_P(WebGL2CompatibilityTest, CopyMip1ToMip0)
// http://anglebug.com/4805 // http://anglebug.com/4805
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsIntel() && (IsWindows() || IsOSX())); ANGLE_SKIP_TEST_IF(IsOpenGL() && IsIntel() && (IsWindows() || IsOSX()));
// TODO(crbug.com/1132295): Failing on ARM64-based Apple DTKs.
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsDesktopOpenGL());
GLFramebuffer framebuffer; GLFramebuffer framebuffer;
glBindFramebuffer(GL_FRAMEBUFFER, framebuffer); glBindFramebuffer(GL_FRAMEBUFFER, framebuffer);
......
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