Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Unified Diff: gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc

Issue 2112333002: gl_tests: suppress a test failing on Intel Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc
diff --git a/gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc b/gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc
index b0995a8657092d7f5afb59f20d1ee914ac853ced..11b0d3b8e2e772e1baf31366be430e6172d37f38 100644
--- a/gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc
+++ b/gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc
@@ -300,6 +300,15 @@ TEST_P(EXTBlendFuncExtendedES3DrawTest, ESSL3Var) {
TEST_P(EXTBlendFuncExtendedES3DrawTest, ESSL3BindArrayWithSimpleName) {
if (!IsApplicable())
return;
+
+ // Fails on the Intel Mesa driver, see
+ // https://bugs.freedesktop.org/show_bug.cgi?id=96765
+ gpu::GPUTestBotConfig bot_config;
+ if (bot_config.LoadCurrentConfig(nullptr) &&
+ bot_config.Matches("linux intel")) {
+ return;
+ }
+
// clang-format off
static const char* kFragDataShader =
"#version 300 es\n"
@@ -359,6 +368,15 @@ TEST_P(EXTBlendFuncExtendedES3DrawTest, ESSL3BindSimpleVarAsArrayNoBind) {
TEST_P(EXTBlendFuncExtendedES3DrawTest, ESSL3BindArrayAsArray) {
if (!IsApplicable())
return;
+
+ // Fails on the Intel Mesa driver, see
+ // https://bugs.freedesktop.org/show_bug.cgi?id=96765
+ gpu::GPUTestBotConfig bot_config;
+ if (bot_config.LoadCurrentConfig(nullptr) &&
+ bot_config.Matches("linux intel")) {
+ return;
+ }
+
// clang-format off
static const char* kFragDataShader =
"#version 300 es\n"
@@ -479,9 +497,12 @@ TEST_P(EXTBlendFuncExtendedES3DrawTest, ES3GettersArray) {
return;
// TODO(zmo): Figure out why this fails on AMD. crbug.com/585132.
+ // Also fails on the Intel Mesa driver, see
+ // https://bugs.freedesktop.org/show_bug.cgi?id=96765
gpu::GPUTestBotConfig bot_config;
if (bot_config.LoadCurrentConfig(nullptr) &&
- bot_config.Matches("linux amd")) {
+ (bot_config.Matches("linux amd") ||
+ bot_config.Matches("linux intel"))) {
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698