Commit 8ff73235 by Yuly Novikov Committed by Commit Bot

Skip couple UniformBufferTest31 on Linux AMD

Broken by https://chromium-review.googlesource.com/c/522874/ on Linux Release (AMD R7 240) build 2431 BUG=angleproject:1897 TBR=jmadill@chromium.org Change-Id: I4c1f99a839f215b4c284ae1667d0a3b0774281c7 Reviewed-on: https://chromium-review.googlesource.com/557259Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 834dd263
......@@ -676,6 +676,13 @@ TEST_P(UniformBufferTest31, MaxUniformBufferBindingsExceeded)
// Test uniform block bindings specified by layout in shader work properly.
TEST_P(UniformBufferTest31, UniformBufferBindings)
{
// TODO(jmadill): Figure out why this fails on Linux AMD OpenGL
if (IsLinux() && IsAMD() && IsDesktopOpenGL())
{
std::cout << "Test skipped on Linux OpenGL on AMD." << std::endl;
return;
}
const std::string &vertexShaderSource =
"#version 310 es\n"
"in vec4 position;\n"
......@@ -741,6 +748,13 @@ TEST_P(UniformBufferTest31, UniformBufferBindings)
// Test uniform blocks used as instanced array take next binding point for each subsequent element.
TEST_P(UniformBufferTest31, ConsecutiveBindingsForBlockArray)
{
// TODO(jmadill): Figure out why this fails on Linux AMD OpenGL
if (IsLinux() && IsAMD() && IsDesktopOpenGL())
{
std::cout << "Test skipped on Linux OpenGL on AMD." << std::endl;
return;
}
const std::string &vertexShaderSource =
"#version 310 es\n"
"in vec4 position;\n"
......
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