Commit d2391983 by Geoff Lang Committed by Commit Bot

Skip the RGBTextureTest.SRGB[A]Validation test on Ozone.

Many of the other tests in this file are already skipped on this platform but now that GL driver errors cause tests to fail, these tests that previously did not verify their results started to fail. Change-Id: I0d5c88289de42464ae56ac7238c26b384819fe02 Reviewed-on: https://chromium-review.googlesource.com/580255Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent b9c53d8d
......@@ -68,6 +68,13 @@ class SRGBTextureTest : public ANGLETest
TEST_P(SRGBTextureTest, SRGBValidation)
{
// TODO(fjhenigman): Figure out why this fails on Ozone Intel.
if (IsOzone() && IsIntel() && IsOpenGLES())
{
std::cout << "Test skipped on Ozone Intel." << std::endl;
return;
}
bool supported = extensionEnabled("GL_EXT_sRGB") || getClientMajorVersion() == 3;
GLuint tex = 0;
......@@ -96,6 +103,13 @@ TEST_P(SRGBTextureTest, SRGBValidation)
TEST_P(SRGBTextureTest, SRGBAValidation)
{
// TODO(fjhenigman): Figure out why this fails on Ozone Intel.
if (IsOzone() && IsIntel() && IsOpenGLES())
{
std::cout << "Test skipped on Ozone Intel." << std::endl;
return;
}
bool supported = extensionEnabled("GL_EXT_sRGB") || getClientMajorVersion() == 3;
GLuint tex = 0;
......
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