diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-30 18:00:56 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-30 18:00:56 +0000 |
commit | 8158be2429cc3a7a29448b4cdf2cdf559d7ea9a9 (patch) | |
tree | 131949ef8ede752b50d0317f70d0154ae1e6a816 /tools | |
parent | 5d61d4d50305a19504d75406ac9b32c0cf8bb636 (diff) | |
download | chromium_src-8158be2429cc3a7a29448b4cdf2cdf559d7ea9a9.zip chromium_src-8158be2429cc3a7a29448b4cdf2cdf559d7ea9a9.tar.gz chromium_src-8158be2429cc3a7a29448b4cdf2cdf559d7ea9a9.tar.bz2 |
Valgrind/Heapchecker: Add a new suppression for a JsSyncManagerObserverTest leak. Cleanup some other suppression entries.
BUG=127717,139635
TEST=none
TBR=jhawkins
Review URL: https://chromiumcodereview.appspot.com/10831074
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148974 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/heapcheck/suppressions.txt | 50 | ||||
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 7 |
2 files changed, 31 insertions, 26 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt index 24ce08d1..701c75d 100644 --- a/tools/heapcheck/suppressions.txt +++ b/tools/heapcheck/suppressions.txt @@ -633,6 +633,24 @@ fun:ReloadButtonGtkTest_*_Test::TestBody } { + bug_65940_a + Heapcheck:Leak + ... + fun:IPC::SyncChannel::SyncChannel + fun:ChildThread::Init + fun:ChildThread::ChildThread + fun:RenderThreadImpl::RenderThreadImpl +} +{ + bug_65940_b + Heapcheck:Leak + fun:__gnu_cxx::new_allocator::allocate + fun:std::_Vector_base::_M_allocate + fun:std::vector::_M_insert_aux + fun:std::vector::push_back + fun:IPC::ChannelProxy::Context::OnAddFilter +} +{ bug_66054_a Heapcheck:Leak ... @@ -1385,14 +1403,6 @@ fun:*_*_Test::TestBody } { - bug_127717 - Heapcheck:Leak - ... - fun:SkBitmap::HeapAllocator::allocPixelRef - fun:SkBitmap::allocPixels - fun:SkBitmap::allocPixels -} -{ bug_128145 Heapcheck:Leak ... @@ -1479,24 +1489,6 @@ fun:ui::InputMethodIBus::Init } { - bug_65940_a - Heapcheck:Leak - ... - fun:IPC::SyncChannel::SyncChannel - fun:ChildThread::Init - fun:ChildThread::ChildThread - fun:RenderThreadImpl::RenderThreadImpl -} -{ - bug_65940_b - Heapcheck:Leak - fun:__gnu_cxx::new_allocator::allocate - fun:std::_Vector_base::_M_allocate - fun:std::vector::_M_insert_aux - fun:std::vector::push_back - fun:IPC::ChannelProxy::Context::OnAddFilter -} -{ bug_136936 Heapcheck:Leak ... @@ -1504,3 +1496,9 @@ ... fun:base::PlatformThread::SetName } +{ + bug_139635 + Heapcheck:Leak + fun:syncer::JsSyncManagerObserver::OnInitializationComplete + fun:syncer::::JsSyncManagerObserverTest_OnInitializationComplete_Test::TestBody +} diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index 9b7173e..1115ae9 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -5748,6 +5748,13 @@ fun:_ZN7WebCore12WorkerThread12runEventLoopEv fun:_ZN7WebCore21DedicatedWorkerThread12runEventLoopEv } +{ + bug_139635 + Memcheck:Leak + fun:_Znw* + fun:_ZN6syncer21JsSyncManagerObserver24OnInitializationCompleteERKNS_10WeakHandleINS_9JsBackendEEEbNS_7EnumSetINS_9ModelTypeELS7_2ELS7_16EEE + fun:_ZN6syncer12_GLOBAL__N_155JsSyncManagerObserverTest_OnInitializationComplete_Test8TestBodyEv +} #----------------------------------------------------------------------- # 4. These only occur on our Google workstations |