diff options
author | zhaoqin@google.com <zhaoqin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 04:08:30 +0000 |
---|---|---|
committer | zhaoqin@google.com <zhaoqin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 04:08:30 +0000 |
commit | d061e9bd1a883172db01c644d83c1a1ae45efc90 (patch) | |
tree | 974041b5342316ff1aefbcf1690ceb6fe27fafbc | |
parent | 76a0b9dd40da48477e87d17d77b8e1941919e342 (diff) | |
download | chromium_src-d061e9bd1a883172db01c644d83c1a1ae45efc90.zip chromium_src-d061e9bd1a883172db01c644d83c1a1ae45efc90.tar.gz chromium_src-d061e9bd1a883172db01c644d83c1a1ae45efc90.tar.bz2 |
suppress memory leak from SelectFileDialogExtensionTest
TBR=satorux@chromium.org
BUG=118336
TEST=waterfall.sh
Review URL: https://chromiumcodereview.appspot.com/9699063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126834 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | tools/heapcheck/suppressions.txt | 6 | ||||
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt index 25d3351..9f59234 100644 --- a/tools/heapcheck/suppressions.txt +++ b/tools/heapcheck/suppressions.txt @@ -1881,3 +1881,9 @@ fun:invalidation::InvalidationClientImpl::Start fun:sync_notifier::ChromeInvalidationClient::Start } +{ + bug_118336 + Heapcheck:Leak + ... + fun:SelectFileDialogExtensionTest_SelfDeleting_Test::TestBody +} diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index 3174753..ec7e733 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -5951,6 +5951,13 @@ fun:_ZN12invalidation22InvalidationClientImpl5StartEv fun:_ZN13sync_notifier24ChromeInvalidationClient5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_26InvalidationVersionTrackerEEEPNS0_8ListenerEPNS_11StateWriterEN4base7WeakPtrIN4buzz23XmppTaskParentInterfaceEEE } +{ + bug_118336 + Memcheck:Leak + fun:_Znw* + ... + fun:_ZN47SelectFileDialogExtensionTest_SelfDeleting_Test8TestBodyEv +} #----------------------------------------------------------------------- # 4. These only occur on our Google workstations |