Commit 90d874fc by Yuly Novikov Committed by Commit Bot

Skip couple TextureRectangleTest tests on Window NVIDIA OpenGL

TextureRectangleTest.TexStorage2D and TextureRectangleTest.TexImage2D failed on NVIDIA Quadro P400, previously disabled on Linux. BUG=angleproject:2122 TBR=cwallez@chromium.org Change-Id: I471dc040ed51a0e4588cfaab7d1c4c46e69932d5 Reviewed-on: https://chromium-review.googlesource.com/602779Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 53440f39
...@@ -52,10 +52,10 @@ TEST_P(TextureRectangleTest, TexImage2D) ...@@ -52,10 +52,10 @@ TEST_P(TextureRectangleTest, TexImage2D)
{ {
ANGLE_SKIP_TEST_IF(!checkExtensionSupported()); ANGLE_SKIP_TEST_IF(!checkExtensionSupported());
if (IsLinux() && IsNVIDIA() && IsDesktopOpenGL()) if ((IsLinux() || IsWindows()) && IsNVIDIA() && IsDesktopOpenGL())
{ {
// TODO(cwallez): Investigate the failure (http://anglebug.com/2122) // TODO(cwallez): Investigate the failure (http://anglebug.com/2122)
std::cout << "Test disabled on Linux NVIDIA OpenGL." << std::endl; std::cout << "Test disabled on Linux and Windows NVIDIA OpenGL." << std::endl;
return; return;
} }
...@@ -122,10 +122,10 @@ TEST_P(TextureRectangleTest, TexStorage2D) ...@@ -122,10 +122,10 @@ TEST_P(TextureRectangleTest, TexStorage2D)
ANGLE_SKIP_TEST_IF(!checkExtensionSupported()); ANGLE_SKIP_TEST_IF(!checkExtensionSupported());
ANGLE_SKIP_TEST_IF(getClientMajorVersion() < 3 && !extensionEnabled("GL_EXT_texture_storage")); ANGLE_SKIP_TEST_IF(getClientMajorVersion() < 3 && !extensionEnabled("GL_EXT_texture_storage"));
if (IsLinux() && IsNVIDIA() && IsDesktopOpenGL()) if ((IsLinux() || IsWindows()) && IsNVIDIA() && IsDesktopOpenGL())
{ {
// TODO(cwallez): Investigate the failure (http://anglebug.com/2122) // TODO(cwallez): Investigate the failure (http://anglebug.com/2122)
std::cout << "Test disabled on Linux NVIDIA OpenGL." << std::endl; std::cout << "Test disabled on Linux and Windows NVIDIA OpenGL." << std::endl;
return; return;
} }
......
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