diff options
author | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-24 12:58:08 +0000 |
---|---|---|
committer | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-24 12:58:08 +0000 |
commit | 139857371180058779101c073fc32934962ae4dd (patch) | |
tree | 0035b125e8c5a93ae6f713e61d371a7a00f2b4d9 | |
parent | 2effd6d982b9d290534374ebb479decb7e45322c (diff) | |
download | chromium_src-139857371180058779101c073fc32934962ae4dd.zip chromium_src-139857371180058779101c073fc32934962ae4dd.tar.gz chromium_src-139857371180058779101c073fc32934962ae4dd.tar.bz2 |
Add heapcheck suppressions for fontconfig one-time leaks.
This patch was originally prepared by Matt Mueller
TBR=mattm
BUG=39050
TEST=tools/heapcheck/chrome_tests.sh -t unit
Review URL: http://codereview.chromium.org/1274001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42456 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | tools/heapcheck/suppressions.txt | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt index 3c2bd55..b13d308 100644 --- a/tools/heapcheck/suppressions.txt +++ b/tools/heapcheck/suppressions.txt @@ -11,6 +11,57 @@ #----------------------------------------------------------------------- # 1. third party stuff we have no control over +{ + bug_39050_a + Heapcheck:Leak + fun:FcPatternObjectAddWithBinding +} +{ + bug_39050_b + Heapcheck:Leak + fun:FcPatternObjectInsertElt +} +{ + bug_39050_c + Heapcheck:Leak + fun:FcConfigValues +} +{ + bug_39050_d + Heapcheck:Leak + fun:IA__FcLangSetCreate +} +{ + bug_39050_d2 + Heapcheck:Leak + fun:FcLangSetCreate +} +{ + bug_39050_e + Heapcheck:Leak + fun:IA__FcStrCopy +} +{ + bug_39050_e2 + Heapcheck:Leak + fun:FcStrCopy +} +{ + bug_39050_f + Heapcheck:Leak + fun:FcValueSave +} +{ + bug_39050_g + Heapcheck:Leak + fun:FcPatternHash +} +{ + bug_39050_h + Heapcheck:Leak + fun:FcConfigFilename +} + #----------------------------------------------------------------------- # 2. intentional unit test errors, or stuff that is somehow a false positive # in our own code, or stuff that is so trivial it's not worth fixing |