Commit 3dc5d070 by Geoff Lang

Skip MaxAttribs test on all AMD/OpenGL configs.

Change-Id: Ia1c4f230a51c49a48db2d12749b9a028a17168e3 Reviewed-on: https://chromium-review.googlesource.com/277727Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 8e695edb
......@@ -288,10 +288,10 @@ TEST_P(VertexAttributeTest, ShortNormalized)
// Validate that we can support GL_MAX_ATTRIBS attribs
TEST_P(VertexAttributeTest, MaxAttribs)
{
// TODO(jmadill): Figure out why we get this error on AMD/ES2/OpenGL
if (isAMD() && GetParam() == ES2_OPENGL())
// TODO(jmadill): Figure out why we get this error on AMD/OpenGL
if (isAMD() && (GetParam() == ES2_OPENGL() || GetParam() == ES3_OPENGL()))
{
std::cout << "Test disabled on AMD/ES2/OpenGL" << std::endl;
std::cout << "Test disabled on AMD/OpenGL" << std::endl;
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