diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 13:35:42 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 13:35:42 +0000 |
commit | 69d72db6e7c4bbe291476f966b05dfcea8d59859 (patch) | |
tree | 9e6c2aeb95808074522d90af4b67824804e9b893 /tools | |
parent | e55a7659c02e532a4c52230697b8a4929302ed86 (diff) | |
download | chromium_src-69d72db6e7c4bbe291476f966b05dfcea8d59859.zip chromium_src-69d72db6e7c4bbe291476f966b05dfcea8d59859.tar.gz chromium_src-69d72db6e7c4bbe291476f966b05dfcea8d59859.tar.bz2 |
Widen a few valgrind and heapcheck suppressions
Also adds a suppression for another leak related to the content refactor of process hosting.
TBR=zhaoqin
BUG=105667,111037,102327,109496
TEST=None
Review URL: https://chromiumcodereview.appspot.com/9279006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118674 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/heapcheck/suppressions.txt | 1 | ||||
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 15 |
2 files changed, 12 insertions, 4 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt index eda6336..e24b7aa 100644 --- a/tools/heapcheck/suppressions.txt +++ b/tools/heapcheck/suppressions.txt @@ -1749,6 +1749,7 @@ fun:browser_sync::NonFrontendDataTypeController::Stop fun:browser_sync::DataTypeManagerImpl::FinishStop fun:browser_sync::DataTypeManagerImpl::Stop + ... fun:ProfileSyncService::Shutdown } { diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index 9e3a5fe..61c4069 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -4727,12 +4727,12 @@ bug_102327b Memcheck:Leak fun:_Znw* - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKN15tracked_objects6BirthsENS3_9DeathDataEEEE8allocateEmPKv + fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKN15tracked_objects6BirthsENS3_9DeathDataEEEE8allocateE* ... fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_ fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_ fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6Births* - fun:_ZN15tracked_objects10ThreadData3?TallyRunOn*ThreadIfTrackingE* + fun:_ZN15tracked_objects10ThreadData3?TallyRun*IfTrackingE* } { bug_102327c @@ -4930,7 +4930,8 @@ fun:_ZN12browser_sync29NonFrontendDataTypeController4StopEv fun:_ZN12browser_sync19DataTypeManagerImpl10FinishStopEv fun:_ZN12browser_sync19DataTypeManagerImpl4StopEv - fun:_ZN18ProfileSyncService8ShutdownEb + ... + fun:_ZN18ProfileSyncService8Shutdown* fun:_ZN18ProfileSyncServiceD2Ev fun:_ZN22TestProfileSyncServiceD0Ev fun:_ZN10scoped_ptrI22TestProfileSyncServiceE5resetEPS0_ @@ -5508,7 +5509,7 @@ fun:_ZN7WebCore16SVGRenderSupport22finishRenderSVGContentEPNS_12RenderObjectERNS_9PaintInfoEPNS_15GraphicsContextE fun:_ZN7WebCore14RenderSVGShape5paintERNS_9PaintInfoERKNS_8IntPointE ... - fun:_ZN7WebCore13RenderSVGRoot5paintERNS_9PaintInfoERKNS_8IntPointE + fun:_ZN7WebCore13RenderSVGRoot*paint*PaintInfoERKNS_8IntPointE } { bug_109613 @@ -5580,6 +5581,12 @@ fun:_ZN17PluginServiceImpl29FindOrStartNpapiPluginProcessERK8FilePath fun:_ZN17PluginServiceImpl25FinishOpenChannelToPluginERK8FilePathPN17PluginProcessHost6ClientE } +{ + bug_111037d + Memcheck:Leak + fun:_Znw* + fun:_ZN20KeyUtilityClientImpl27StartUtilityProcessInternalEv +} #----------------------------------------------------------------------- # 4. These only occur on our Google workstations |