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

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

Issue 7278008: Fix obvious leak in chrome_web_ui_data_source_unittest.cc, and revert associated suppresions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 5 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 | « tools/heapcheck/suppressions.txt ('k') | 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 three kinds of suppressions in this file. 1 # There are three 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 4794 matching lines...) Expand 10 before | Expand all | Expand 10 after
4805 fun:_ZN8chromeos12input_method18InputMethodManager11GetInstanceEv 4805 fun:_ZN8chromeos12input_method18InputMethodManager11GetInstanceEv
4806 } 4806 }
4807 { 4807 {
4808 bug_87998 4808 bug_87998
4809 Memcheck:Leak 4809 Memcheck:Leak
4810 fun:_Znw* 4810 fun:_Znw*
4811 fun:_ZN33GeolocationInfoBarQueueController17ShowQueuedInfoBarEii 4811 fun:_ZN33GeolocationInfoBarQueueController17ShowQueuedInfoBarEii
4812 fun:_ZN33GeolocationInfoBarQueueController20CreateInfoBarRequestEiiiRK4GURLS2 _ 4812 fun:_ZN33GeolocationInfoBarQueueController20CreateInfoBarRequestEiiiRK4GURLS2 _
4813 fun:_ZN34ChromeGeolocationPermissionContext28RequestGeolocationPermissionEiii RK4GURL 4813 fun:_ZN34ChromeGeolocationPermissionContext28RequestGeolocationPermissionEiii RK4GURL
4814 } 4814 }
4815 {
4816 bug_88094_a
4817 Memcheck:Leak
4818 fun:_Znw*
4819 fun:_ZN25ChromeWebUIDataSourceTest5SetUpEv
4820 }
4821 {
4822 bug_88094_b
4823 Memcheck:Leak
4824 fun:_Znw*
4825 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsP5ValueEEE8allo cateEmPKv
4826 fun:_ZNSt8_Rb_treeISsSt4pairIKSsP5ValueESt10_Select1stIS4_ESt4lessISsESaIS4_E E11_M_get_nodeEv
4827 ...
4828 fun:_ZN20ChromeURLDataManager10DataSource23SetFontAndTextDirectionEP15Diction aryValue
4829 fun:_ZN21ChromeWebUIDataSource26SendLocalizedStringsAsJSONEi
4830 fun:_ZN21ChromeWebUIDataSource16StartDataRequestERKSsbi
4831 }
4832 {
4833 bug_88094_c
4834 Memcheck:Leak
4835 fun:_Znw*
4836 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsP5ValueEEE8allo cateEjPKv
4837 fun:_ZNSt8_Rb_treeISsSt4pairIKSsP5ValueESt10_Select1stIS4_ESt4lessISsESaIS4_E E11_M_get_nodeEv
4838 ...
4839 fun:_ZN15DictionaryValue23SetWithoutPathExpansionERKSsP5Value
4840 fun:_ZN15DictionaryValue3SetERKSsP5Value
4841 fun:_ZN15DictionaryValue9SetStringERKSsRKSbItN4base20string16_char_traitsESaI tEE
4842 fun:_ZN20ChromeURLDataManager10DataSource23SetFontAndTextDirectionEP15Diction aryValue
4843 fun:_ZN21ChromeWebUIDataSource26SendLocalizedStringsAsJSONEi
4844 fun:_ZN21ChromeWebUIDataSource16StartDataRequestERKSsbi
4845 fun:_ZN25MockChromeWebUIDataSource16StartDataRequestERKSsbi
4846 }
4847 4815
4848 #----------------------------------------------------------------------- 4816 #-----------------------------------------------------------------------
4849 # These only occur on our Google workstations 4817 # These only occur on our Google workstations
4850 { 4818 {
4851 bug_todo_freeres 4819 bug_todo_freeres
4852 Memcheck:Free 4820 Memcheck:Free
4853 fun:free 4821 fun:free
4854 fun:__libc_freeres 4822 fun:__libc_freeres
4855 fun:_vgnU_freeres 4823 fun:_vgnU_freeres
4856 fun:_Exit 4824 fun:_Exit
(...skipping 11 matching lines...) Expand all
4868 { 4836 {
4869 bug_todo_getdelim2 4837 bug_todo_getdelim2
4870 Memcheck:Leak 4838 Memcheck:Leak
4871 fun:malloc 4839 fun:malloc
4872 fun:getdelim 4840 fun:getdelim
4873 obj:/lib/libselinux.so.1 4841 obj:/lib/libselinux.so.1
4874 obj:/lib/libselinux.so.1 4842 obj:/lib/libselinux.so.1
4875 obj:/lib/libselinux.so.1 4843 obj:/lib/libselinux.so.1
4876 } 4844 }
4877 4845
OLDNEW
« no previous file with comments | « tools/heapcheck/suppressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698