Commit df55f252 by Frank Henigman Committed by Commit Bot

Skip a couple end2end tests on Ozone.

Skip the following two end2end tests on Ozone pending investigation: IndexedPointsTestUShort.VertexWithColorUnsignedShortOffsetChangingIndices/ES2_OPENGLES SRGBTextureTest.SRGBDecodeTextureParameter/ES2_OPENGLES BUG=angleproject:1423 Change-Id: Ied5b42903421ae9f388e8563814e3fe28eeb7b3e Reviewed-on: https://chromium-review.googlesource.com/469087 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 72106562
......@@ -297,6 +297,13 @@ TEST_P(IndexedPointsTestUShort, VertexWithColorUnsignedShortOffset3)
TEST_P(IndexedPointsTestUShort, VertexWithColorUnsignedShortOffsetChangingIndices)
{
// TODO(fjhenigman): Figure out why this fails on Ozone Intel.
if (IsOzone() && IsIntel() && IsOpenGLES())
{
std::cout << "Test skipped on Ozone Intel." << std::endl;
return;
}
runTest(3, true);
runTest(1, true);
runTest(0, true);
......
......@@ -188,6 +188,13 @@ TEST_P(SRGBTextureTest, SRGBDecodeExtensionAvailability)
// Test basic functionality of SRGB decode using the texture parameter
TEST_P(SRGBTextureTest, SRGBDecodeTextureParameter)
{
// TODO(fjhenigman): Figure out why this fails on Ozone Intel.
if (IsOzone() && IsIntel() && IsOpenGLES())
{
std::cout << "Test skipped on Ozone Intel." << std::endl;
return;
}
if (!extensionEnabled("GL_EXT_texture_sRGB_decode"))
{
std::cout << "Test skipped because GL_EXT_texture_sRGB_decode is not available."
......
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