Commit 7f00d338 by Corentin Wallez Committed by Commit Bot

Suppress end2end tests failures on Android FYI Release (NVIDIA Shield TV)

These were fixed on desktop drivers but not this Android driver. TBR=geofflang@chromium.org BUG=chromium:998505 Change-Id: Ie5f434c52753beff4d8f119713ef55f229ee7b95 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1773253 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 05114fe7
...@@ -1280,6 +1280,9 @@ TEST_P(GLSLTest_ES3, MissingReturnArrayOfStructs) ...@@ -1280,6 +1280,9 @@ TEST_P(GLSLTest_ES3, MissingReturnArrayOfStructs)
// Verify that functions without return statements still compile // Verify that functions without return statements still compile
TEST_P(GLSLTest_ES3, MissingReturnStructOfArrays) TEST_P(GLSLTest_ES3, MissingReturnStructOfArrays)
{ {
// TODO(crbug.com/998505): Test failing on Android FYI Release (NVIDIA Shield TV)
ANGLE_SKIP_TEST_IF(IsNVIDIAShield());
constexpr char kVS[] = constexpr char kVS[] =
"#version 300 es\n" "#version 300 es\n"
"in float v_varying;\n" "in float v_varying;\n"
......
...@@ -2132,6 +2132,9 @@ TEST_P(Texture2DTestES3, DrawWithLevelZeroUndefined) ...@@ -2132,6 +2132,9 @@ TEST_P(Texture2DTestES3, DrawWithLevelZeroUndefined)
// GLES 3.0.4 section 3.8.13 Texture completeness // GLES 3.0.4 section 3.8.13 Texture completeness
TEST_P(Texture2DTestES3, DrawWithLevelsOutsideRangeWithInconsistentDimensions) TEST_P(Texture2DTestES3, DrawWithLevelsOutsideRangeWithInconsistentDimensions)
{ {
// TODO(crbug.com/998505): Test failing on Android FYI Release (NVIDIA Shield TV)
ANGLE_SKIP_TEST_IF(IsNVIDIAShield());
glActiveTexture(GL_TEXTURE0); glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, mTexture2D); glBindTexture(GL_TEXTURE_2D, mTexture2D);
std::vector<GLColor> texDataRed(8u * 8u, GLColor::red); std::vector<GLColor> texDataRed(8u * 8u, GLColor::red);
...@@ -2483,6 +2486,9 @@ TEST_P(Texture2DTestES3, ImmutableTextureBaseLevelOutOfRange) ...@@ -2483,6 +2486,9 @@ TEST_P(Texture2DTestES3, ImmutableTextureBaseLevelOutOfRange)
// Test that changing base level works when it affects the format of the texture. // Test that changing base level works when it affects the format of the texture.
TEST_P(Texture2DTestES3, TextureFormatChangesWithBaseLevel) TEST_P(Texture2DTestES3, TextureFormatChangesWithBaseLevel)
{ {
// TODO(crbug.com/998505): Test failing on Android FYI Release (NVIDIA Shield TV)
ANGLE_SKIP_TEST_IF(IsNVIDIAShield());
ANGLE_SKIP_TEST_IF(IsIntel() && IsWindows() && IsDesktopOpenGL()); ANGLE_SKIP_TEST_IF(IsIntel() && IsWindows() && IsDesktopOpenGL());
// Observed incorrect rendering on AMD OpenGL. // Observed incorrect rendering on AMD OpenGL.
......
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