Commit 82337b00 by Corentin Wallez Committed by Commit Bot

Add suppressions for failing tests on Linux Nvidia GL

The following failing without a clear reason (asides from PartitionAlloc changes in Chromium maybe). This CL suppresses them while we find what the issue is. TBR=syoussefi@chromium.org Bug: angleproject:5651 Change-Id: I6cba67351dfba37fd6d86a07ac748b7998665361 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2700511Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent e99828e4
...@@ -50,6 +50,9 @@ TEST_P(TextureRectangleTest, TexImage2D) ...@@ -50,6 +50,9 @@ TEST_P(TextureRectangleTest, TexImage2D)
{ {
ANGLE_SKIP_TEST_IF(!checkExtensionSupported()); ANGLE_SKIP_TEST_IF(!checkExtensionSupported());
// http://anglebug.com/5651
ANGLE_SKIP_TEST_IF(IsLinux() && IsNVIDIA() && IsOpenGL());
GLTexture tex; GLTexture tex;
glBindTexture(GL_TEXTURE_RECTANGLE_ANGLE, tex); glBindTexture(GL_TEXTURE_RECTANGLE_ANGLE, tex);
...@@ -119,6 +122,9 @@ TEST_P(TextureRectangleTest, TexStorage2D) ...@@ -119,6 +122,9 @@ TEST_P(TextureRectangleTest, TexStorage2D)
ANGLE_SKIP_TEST_IF(getClientMajorVersion() < 3 && ANGLE_SKIP_TEST_IF(getClientMajorVersion() < 3 &&
!IsGLExtensionEnabled("GL_EXT_texture_storage")); !IsGLExtensionEnabled("GL_EXT_texture_storage"));
// http://anglebug.com/5651
ANGLE_SKIP_TEST_IF(IsLinux() && IsNVIDIA() && IsOpenGL());
bool useES3 = getClientMajorVersion() >= 3; bool useES3 = getClientMajorVersion() >= 3;
auto TexStorage2D = [useES3](GLenum target, GLint levels, GLenum format, GLint width, auto TexStorage2D = [useES3](GLenum target, GLint levels, GLenum format, GLint width,
GLint height) { GLint height) {
......
...@@ -2133,6 +2133,9 @@ TEST_P(Texture2DTest, TexStorageWithPBO) ...@@ -2133,6 +2133,9 @@ TEST_P(Texture2DTest, TexStorageWithPBO)
// http://anglebug.com/5081 // http://anglebug.com/5081
ANGLE_SKIP_TEST_IF(IsWindows() && IsNVIDIA() && IsOpenGL()); ANGLE_SKIP_TEST_IF(IsWindows() && IsNVIDIA() && IsOpenGL());
// http://anglebug.com/5651
ANGLE_SKIP_TEST_IF(IsLinux() && IsNVIDIA() && IsOpenGL());
// http://anglebug.com/5097 // http://anglebug.com/5097
ANGLE_SKIP_TEST_IF(IsLinux() && IsOpenGL() && IsTSan()); ANGLE_SKIP_TEST_IF(IsLinux() && IsOpenGL() && IsTSan());
......
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