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

Unified Diff: build/sanitizers/lsan_suppressions.cc

Issue 1870503002: Making CSSValue Pool thread local (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing ASAN memory leaks in 2 unit tests Created 4 years, 8 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 | third_party/WebKit/Source/core/css/CSSValuePool.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/sanitizers/lsan_suppressions.cc
diff --git a/build/sanitizers/lsan_suppressions.cc b/build/sanitizers/lsan_suppressions.cc
index afe4c356e9c2064d04457a8b92fee2d33baa4f99..72cb4c40197857f75faa89783b28b22a526db07e 100644
--- a/build/sanitizers/lsan_suppressions.cc
+++ b/build/sanitizers/lsan_suppressions.cc
@@ -21,6 +21,11 @@ char kLSanDefaultSuppressions[] =
// False positives in libfontconfig. http://crbug.com/39050
"leak:libfontconfig\n"
+// eglibc-2.19/string creates false positive leak errors because of the same
+// reason as crbug.com/39050. The leak error stack trace, when unwind on malloc,
+// includes a call to libfontconfig. But the default stack trace is too short
+// in leak sanitizer bot to make the libfontconfig suppression works.
+"leak:eglibc-2.19/string\n"
Evgeniy Stepanov 2016/04/20 20:53:26 This would break on any different version of glibc
Evgeniy Stepanov 2016/04/20 21:13:07 OK, I've got it. I'll fix ASan/LSan upstream so th
// Leaks in Nvidia's libGL.
"leak:libGL.so\n"
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSValuePool.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698