diff options
author | zhaoqin@google.com <zhaoqin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-27 04:50:05 +0000 |
---|---|---|
committer | zhaoqin@google.com <zhaoqin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-27 04:50:05 +0000 |
commit | 4be62b775245fd0b9b95b5e3dcb6eb1aba590c06 (patch) | |
tree | b66347a378132ca63174bcf9276e88975166abfc /tools | |
parent | d5bdcda07fe6f2d4229c9c88cf2dfe3e655a1eb8 (diff) | |
download | chromium_src-4be62b775245fd0b9b95b5e3dcb6eb1aba590c06.zip chromium_src-4be62b775245fd0b9b95b5e3dcb6eb1aba590c06.tar.gz chromium_src-4be62b775245fd0b9b95b5e3dcb6eb1aba590c06.tar.bz2 |
Suppress memory leak for in ResourceDispatcherHostTest
TBR=jam@chromium.org
BUG=111588
TEST=waterfall.sh
Review URL: https://chromiumcodereview.appspot.com/9295007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119368 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/heapcheck/suppressions.txt | 34 | ||||
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 18 |
2 files changed, 51 insertions, 1 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt index 0a9df78..3f124f9 100644 --- a/tools/heapcheck/suppressions.txt +++ b/tools/heapcheck/suppressions.txt @@ -1796,3 +1796,37 @@ fun:crypto::ECSignatureCreator::Sign fun:ECSignatureCreatorTest_BasicTest_Test::TestBody } +{ + bug_111588a + Heapcheck:Leak + ... + fun:ResourceDispatcherHost::CompleteRead + fun:ResourceDispatcherHost::OnReadCompleted + fun:net::URLRequest::NotifyReadCompleted + fun:net::URLRequestJob::NotifyReadComplete + fun:net::URLRequestTestJob::ProcessNextOperation + fun:net::URLRequestTestJob::ProcessOnePendingMessage + fun:ResourceDispatcherHostTest_*_Test::TestBody +} +{ + bug_111588b + Heapcheck:Leak + fun:std::string::_Rep::_S_create + fun:std::string::_Rep::_M_clone + fun:std::string::reserve + fun:bool ::InitCanonical + fun:GURL + fun:IPC::ParamTraits::Read + fun:IPC::ReadParam + fun:IPC::ParamTraits::Read + fun:IPC::ReadParam + fun:IPC::ParamTraits::Read + fun:IPC::ReadParam + fun:IPC::MessageSchema::Read + fun:ResourceHostMsg_RequestResource::Read + fun:ResourceHostMsg_RequestResource::Dispatch + fun:ResourceDispatcherHost::OnMessageReceived + fun:ResourceDispatcherHostTest::MakeTestRequest + fun:ResourceDispatcherHostTest::MakeTestRequest + fun:ResourceDispatcherHostTest_*_Test::TestBody +} diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index 82b9670..391bf79 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -5653,7 +5653,23 @@ fun:_ZN8chromeos17NotificationPanel3AddEP7Balloon fun:_ZN8chromeos21BalloonCollectionImpl21AddSystemNotificationERK12NotificationP7Profileb } - +{ + bug_111588 + Memcheck:Leak + fun:_Znw* + fun:_ZN23DownloadResourceHandler17OnResponseStartedEiPN7content16ResourceResponseE + fun:_ZN7content23BufferedResourceHandler33ForwardPendingEventsToNextHandlerEi + fun:_ZN7content23BufferedResourceHandler27UseAlternateResourceHandlerEiP15ResourceHandler + fun:_ZN7content23BufferedResourceHandler23CompleteResponseStartedEi + fun:_ZN7content23BufferedResourceHandler15OnReadCompletedEiPi + fun:_ZN22ResourceDispatcherHost12CompleteReadEPN3net10URLRequestEPi + fun:_ZN22ResourceDispatcherHost15OnReadCompletedEPN3net10URLRequestEi + fun:_ZN3net10URLRequest19NotifyReadCompletedEi + fun:_ZN3net13URLRequestJob18NotifyReadCompleteEi + fun:_ZN3net17URLRequestTestJob20ProcessNextOperationEv + fun:_ZN3net17URLRequestTestJob24ProcessOnePendingMessageEv + fun:_ZN56ResourceDispatcherHostTest_*_Test8TestBodyEv +} #----------------------------------------------------------------------- # 4. These only occur on our Google workstations |