diff options
author | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-22 14:11:43 +0000 |
---|---|---|
committer | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-22 14:11:43 +0000 |
commit | f94d83b70a5d999abe64b4549438ae05fae67216 (patch) | |
tree | 3ee578e890df67ad6c4b1c00aed84cf66f917f66 /tools | |
parent | 250e5243ce41f9025442773a038670fc24a4622c (diff) | |
download | chromium_src-f94d83b70a5d999abe64b4549438ae05fae67216.zip chromium_src-f94d83b70a5d999abe64b4549438ae05fae67216.tar.gz chromium_src-f94d83b70a5d999abe64b4549438ae05fae67216.tar.bz2 |
Add initial suppressions for the heapchecker bot.
base_unittests should go green.
Review URL: http://codereview.chromium.org/505069
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35146 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/heapcheck/suppressions.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/heapcheck/suppressions.txt b/tools/heapcheck/suppressions.txt new file mode 100644 index 0000000..c962e2e --- /dev/null +++ b/tools/heapcheck/suppressions.txt @@ -0,0 +1,39 @@ +# There are three kinds of suppressions in this file. +# 1. third party stuff we have no control over +# +# 2. intentional unit test errors, or stuff that is somehow a false positive +# in our own code, or stuff that is so trivial it's not worth fixing +# +# 3. Suppressions for real chromium bugs that are not yet fixed. +# These should all be in chromium's bug tracking system (but a few aren't yet). +# Periodically we should sweep this file and the bug tracker clean by +# running overnight and removing outdated bugs/suppressions. +#----------------------------------------------------------------------- + +# 1. third party stuff we have no control over +#----------------------------------------------------------------------- +# 2. intentional unit test errors, or stuff that is somehow a false positive +# in our own code, or stuff that is so trivial it's not worth fixing +{ + Heapcheck sanity test (ToolsSanityTest.MemoryLeak). + Heapcheck:Leak + fun:ToolsSanityTest_MemoryLeak_Test::TestBody +} +#----------------------------------------------------------------------- +# 3. Suppressions for real chromium bugs that are not yet fixed. +# These should all be in chromium's bug tracking system (but a few aren't yet). +# Periodically we should sweep this file and the bug tracker clean by +# running overnight and removing outdated bugs/suppressions. + +# RSAPrivateKeyUnitTest (base_unittests) leaks memory. +{ + bug_28118_a + Heapcheck:Leak + fun:PR_NewLock +} +{ + bug_28118_b + Heapcheck:Leak + fun:PORT_ZAlloc_Util +} + |