summaryrefslogtreecommitdiffstats
path: root/tools/heapcheck
diff options
context:
space:
mode:
authorhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-12 01:31:40 +0000
committerhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-12 01:31:40 +0000
commit9775bbe801e247ea60161c2efa270bc854e06b05 (patch)
treec548f35cf0cee93abc3de757e697fec0942d7b30 /tools/heapcheck
parent0d6a513b47909752e249caec78e4fc9fd721fbd5 (diff)
downloadchromium_src-9775bbe801e247ea60161c2efa270bc854e06b05.zip
chromium_src-9775bbe801e247ea60161c2efa270bc854e06b05.tar.gz
chromium_src-9775bbe801e247ea60161c2efa270bc854e06b05.tar.bz2
Suppresses a heapchecker leak in base::PlatformThread::SetName().
This change suppresses a leak in base::PlatformThread::SetName() shown in the heapchecker bots. (Even though this std::string is created by tracked_object and it may be a duplicate of Bug 102327 <http://crbug.com/102327>, I do not have any ideas why this stack does not include tracked_objects.) TBR=dhollowa BUG=136936 TEST=make the "Linux Heapcheck" bot and the "Chromium OS Heapcheck" bot green. Review URL: https://chromiumcodereview.appspot.com/10694149 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/heapcheck')
-rw-r--r--tools/heapcheck/suppressions.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt
index 755cc69..24ce08d1 100644
--- a/tools/heapcheck/suppressions.txt
+++ b/tools/heapcheck/suppressions.txt
@@ -1496,3 +1496,11 @@
fun:std::vector::push_back
fun:IPC::ChannelProxy::Context::OnAddFilter
}
+{
+ bug_136936
+ Heapcheck:Leak
+ ...
+ fun:std::basic_string::_Rep::_S_create
+ ...
+ fun:base::PlatformThread::SetName
+}