Commit a631e93b by Yuly Novikov Committed by Commit Bot

Disable RobustClientMemoryTest.ReadPixels on Linux Intel OpenGL

Looks like a driver bug on Intel HD 530, uncovered by directing ERR to Platfrom. BUG=angleproject:1660, angleproject:1877 Change-Id: I0b8cd1b2bacb2a95c7667be783801686bc8fdb7b Reviewed-on: https://chromium-review.googlesource.com/438679Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent f8de6667
...@@ -345,6 +345,13 @@ TEST_P(RobustClientMemoryTest, ReadPixels) ...@@ -345,6 +345,13 @@ TEST_P(RobustClientMemoryTest, ReadPixels)
return; return;
} }
// TODO(ynovikov): Looks like a driver bug on Intel HD 530 http://anglebug.com/1877
if (IsLinux() && IsIntel() && IsDesktopOpenGL())
{
std::cout << "Test skipped on Intel OpenGL on Linux." << std::endl;
return;
}
GLsizei dataDimension = 16; GLsizei dataDimension = 16;
std::vector<GLubyte> rgbaData(dataDimension * dataDimension * 4); std::vector<GLubyte> rgbaData(dataDimension * dataDimension * 4);
......
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