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

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

Issue 2086943002: gl_tests: suppress a test failing on Intel Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 b157e799a11a9949227dda2fc8efa43a435126a0..b0995a8657092d7f5afb59f20d1ee914ac853ced 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
@@ -221,6 +221,15 @@ TEST_P(EXTBlendFuncExtendedDrawTest, ESSL1FragColor) {
TEST_P(EXTBlendFuncExtendedDrawTest, ESSL1FragData) {
if (!IsApplicable())
return;
+
+ // Fails on the Intel Mesa driver, see
+ // https://bugs.freedesktop.org/show_bug.cgi?id=96617
+ gpu::GPUTestBotConfig bot_config;
+ if (bot_config.LoadCurrentConfig(nullptr) &&
+ bot_config.Matches("linux intel")) {
+ return;
+ }
+
// clang-format off
static const char* kFragDataShader =
BFE_SHADER(
« 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