Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Side by Side Diff: tools/valgrind/memcheck/suppressions.txt

Issue 13874012: Suppress glib/gthread leaks in component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # There are four kinds of suppressions in this file. 1 # There are four kinds of suppressions in this file.
2 # 1. third party stuff we have no control over 2 # 1. third party stuff we have no control over
3 # 3 #
4 # 2. intentional unit test errors, or stuff that is somehow a false positive 4 # 2. intentional unit test errors, or stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing 5 # in our own code, or stuff that is so trivial it's not worth fixing
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system (but a few aren't yet). 8 # These should all be in chromium's bug tracking system (but a few aren't yet).
9 # Periodically we should sweep this file and the bug tracker clean by 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 } 792 }
793 { 793 {
794 # Most plugins return a constant char * string, but this totem plugin 794 # Most plugins return a constant char * string, but this totem plugin
795 # uses printf and allocates one. 795 # uses printf and allocates one.
796 Ubuntu_Precise_totem_mime_desc_leak 796 Ubuntu_Precise_totem_mime_desc_leak
797 Memcheck:Leak 797 Memcheck:Leak
798 fun:g_strdup_printf 798 fun:g_strdup_printf
799 obj:*/libtotem-cone-plugin.so 799 obj:*/libtotem-cone-plugin.so
800 fun:_ZN6webkit5npapi9PluginLib17ReadWebPluginInfoERKN4base8FilePathEPNS_13Web PluginInfoE 800 fun:_ZN6webkit5npapi9PluginLib17ReadWebPluginInfoERKN4base8FilePathEPNS_13Web PluginInfoE
801 } 801 }
802 {
803 glib/gthread malloc leak in component build
804 Memcheck:Leak
805 fun:malloc
806 ...
807 fun:g_thread_proxy
808 }
809 {
810 glib/gthread calloc leak in component build
811 Memcheck:Leak
812 fun:calloc
813 ...
814 fun:g_thread_proxy
815 }
802 816
803 #----------------------------------------------------------------------- 817 #-----------------------------------------------------------------------
804 # 2. intentional unit test errors, or stuff that is somehow a false positive 818 # 2. intentional unit test errors, or stuff that is somehow a false positive
805 # in our own code, or stuff that is so trivial it's not worth fixing 819 # in our own code, or stuff that is so trivial it's not worth fixing
806 820
807 # See tools/valgrind/memcheck_analyze.py before modifying sanity tests. 821 # See tools/valgrind/memcheck_analyze.py before modifying sanity tests.
808 { 822 {
809 Memcheck sanity test 01 (memory leak). 823 Memcheck sanity test 01 (memory leak).
810 Memcheck:Leak 824 Memcheck:Leak
811 fun:_Zna* 825 fun:_Zna*
(...skipping 6242 matching lines...) Expand 10 before | Expand all | Expand 10 after
7054 Memcheck:Leak 7068 Memcheck:Leak
7055 ... 7069 ...
7056 fun:_ZN10extensions51WebstoreInlineInstallerTest_DomainVerification_Test8Test BodyEv 7070 fun:_ZN10extensions51WebstoreInlineInstallerTest_DomainVerification_Test8Test BodyEv
7057 } 7071 }
7058 { 7072 {
7059 bug_233149 7073 bug_233149
7060 Memcheck:Leak 7074 Memcheck:Leak
7061 fun:_Znw* 7075 fun:_Znw*
7062 fun:_ZN8chromeos52DeviceOAuth2TokenServiceTest_SaveEncryptedToken_Test8TestBo dyEv 7076 fun:_ZN8chromeos52DeviceOAuth2TokenServiceTest_SaveEncryptedToken_Test8TestBo dyEv
7063 } 7077 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698