Commit 7b43c9b0 by Corentin Wallez

Add suppressions for failing end2end tests on Mac Intel

BUG=angleproject:891 Change-Id: I88a8bcc4a6911c92bdb981aca34a0557ad451df7 Reviewed-on: https://chromium-review.googlesource.com/303390Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 8fc63104
...@@ -258,6 +258,15 @@ TEST_P(ClearTestES3, SRGBClear) ...@@ -258,6 +258,15 @@ TEST_P(ClearTestES3, SRGBClear)
// attachment // attachment
TEST_P(ClearTestES3, MixedSRGBClear) TEST_P(ClearTestES3, MixedSRGBClear)
{ {
// TODO(cwallez) figure out why it is broken on Intel on Mac
#if ANGLE_PLATFORM_APPLE
if (isIntel() && getPlatformRenderer() == EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE)
{
std::cout << "Test skipped on Intel on Mac." << std::endl;
return;
}
#endif
glBindFramebuffer(GL_FRAMEBUFFER, mFBO); glBindFramebuffer(GL_FRAMEBUFFER, mFBO);
GLuint textures[2]; GLuint textures[2];
......
...@@ -149,6 +149,15 @@ TEST_P(PackUnpackTest, PackUnpackSnormNormal) ...@@ -149,6 +149,15 @@ TEST_P(PackUnpackTest, PackUnpackSnormNormal)
// Test the correctness of packHalf2x16 and unpackHalf2x16 functions calculating normal floating numbers. // Test the correctness of packHalf2x16 and unpackHalf2x16 functions calculating normal floating numbers.
TEST_P(PackUnpackTest, PackUnpackHalfNormal) TEST_P(PackUnpackTest, PackUnpackHalfNormal)
{ {
// TODO(cwallez) figure out why it is broken on Intel on Mac
#if ANGLE_PLATFORM_APPLE
if (isIntel() && getPlatformRenderer() == EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE)
{
std::cout << "Test skipped on Intel on Mac." << std::endl;
return;
}
#endif
// Expect the shader to output the same value as the input // Expect the shader to output the same value as the input
compareBeforeAfter(mHalfProgram, 0.5f, -0.2f); compareBeforeAfter(mHalfProgram, 0.5f, -0.2f);
compareBeforeAfter(mHalfProgram, -0.35f, 0.75f); compareBeforeAfter(mHalfProgram, -0.35f, 0.75f);
......
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