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

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

Issue 147254: Widen /lib/ld.so suppression to match on 64 bit systems.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 fun:PR_LoadLibraryWithFlags 90 fun:PR_LoadLibraryWithFlags
91 ... 91 ...
92 fun:SECMOD_LoadModule 92 fun:SECMOD_LoadModule
93 } 93 }
94 { 94 {
95 Error in ICU 95 Error in ICU
96 Memcheck:Overlap 96 Memcheck:Overlap
97 fun:memcpy 97 fun:memcpy
98 fun:init_resb_result 98 fun:init_resb_result
99 } 99 }
100
101 { 100 {
102 libc 101 libc_dynamiclinker_foo
103 Memcheck:Cond 102 Memcheck:Cond
104 obj:/lib/ld-2.*.so 103 obj:/lib*/ld-2.*.so
105 obj:/lib/ld-2.*.so 104 obj:/lib*/ld-2.*.so
106 } 105 }
107
108 { 106 {
109 libc 107 libc_dynamiclinker_bar
110 Memcheck:Addr4 108 Memcheck:Addr4
111 obj:/lib/ld-2.*.so 109 obj:/lib*/ld-2.*.so
112 obj:/lib/ld-2.*.so 110 obj:/lib*/ld-2.*.so
113 } 111 }
114 { 112 {
115 FIXME epoll uninitialized data 1 113 FIXME epoll uninitialized data 1
116 Memcheck:Param 114 Memcheck:Param
117 epoll_ctl(epfd) 115 epoll_ctl(epfd)
118 fun:syscall 116 fun:syscall
119 fun:event_add 117 fun:event_add
120 } 118 }
121 { 119 {
122 FIXME epoll uninitialized data 2 120 FIXME epoll uninitialized data 2
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 fun:_ZN3gfx6Canvas13SizeStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontEPi SA_i 602 fun:_ZN3gfx6Canvas13SizeStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontEPi SA_i
605 } 603 }
606 { 604 {
607 # See bug 12539 and 12549 605 # See bug 12539 and 12549
608 bug_12539 606 bug_12539
609 Memcheck:Leak 607 Memcheck:Leak
610 ... 608 ...
611 fun:_ZN7WebCore11ImageSource18createFrameAtIndexEj 609 fun:_ZN7WebCore11ImageSource18createFrameAtIndexEj
612 fun:_ZNK11webkit_glue12ImageDecoder6DecodeEPKhj 610 fun:_ZNK11webkit_glue12ImageDecoder6DecodeEPKhj
613 } 611 }
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