diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-14 20:18:53 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-14 20:18:53 +0000 |
commit | 70d9a81feb73046e345076f3ed9b19acf7c68c68 (patch) | |
tree | e03cf116125828e592a3f174167615d9938cc253 /tools/valgrind | |
parent | 45f0c2122824cf716a77e10f8d1d1c17de6f89fb (diff) | |
download | chromium_src-70d9a81feb73046e345076f3ed9b19acf7c68c68.zip chromium_src-70d9a81feb73046e345076f3ed9b19acf7c68c68.tar.gz chromium_src-70d9a81feb73046e345076f3ed9b19acf7c68c68.tar.bz2 |
Add valgrind suppressions for a leak and and error possibly introduced by SVG filters (r34460). Note that this only greens the WebKit valgrind bots; the main one will probably still be red.
BUG=30346
TEST=none
Review URL: http://codereview.chromium.org/494015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34478 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind')
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index fcdbcd5..12914b5 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -1817,3 +1817,22 @@ fun:ChromeMain fun:main } +{ + bug_30346 + Memcheck:Leak + fun:_Znw* + ... + fun:_ZN13TCMallocGuardC1Ev + fun:_Z41__static_initialization_and_destruction_0ii + fun:_GLOBAL__I__ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE +} +{ + bug_30346b + Memcheck:Addr2 + ... + fun:_ZSt22__get_temporary_bufferIPN7WebCore11RenderLayerEESt4pairIPT_iEiS5_ + fun:_ZNSt17_Temporary_bufferIPPN7WebCore11RenderLayerES2_EC1ES3_S3_ + fun:_ZN7WebCore11RenderLayer17updateZOrderListsEv + fun:_ZN7WebCore11RenderLayer24updateLayerListsIfNeededEv + fun:_ZN7WebCore11RenderLayer38updateCompositingAndLayerListsIfNeededEv +} |