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

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

Issue 193049: linux: add a suppression for a leak when we load a third-party plugin (Closed)
Patch Set: comment fix Created 11 years, 3 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
« 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 fun:g_type_class_meta_marshal 253 fun:g_type_class_meta_marshal
254 fun:g_closure_invoke 254 fun:g_closure_invoke
255 fun:signal_emit_unlocked_R 255 fun:signal_emit_unlocked_R
256 fun:g_signal_emit_valist 256 fun:g_signal_emit_valist
257 fun:g_signal_emit 257 fun:g_signal_emit
258 fun:gtk_container_remove 258 fun:gtk_container_remove
259 fun:gtk_widget_dispose 259 fun:gtk_widget_dispose
260 fun:g_object_run_dispose 260 fun:g_object_run_dispose
261 fun:gtk_object_destroy 261 fun:gtk_object_destroy
262 } 262 }
263 {
264 # Totem plugin leaks when we load it.
265 bug_21326
266 Memcheck:Leak
267 fun:realloc
Lei Zhang 2009/09/08 23:29:07 also need one for calloc
268 ...
269 fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
270 }
271 {
272 # Totem plugin leaks when we load it.
273 bug_21326
Lei Zhang 2009/09/08 23:29:07 I'm not sure if the identifiers need to be unique.
274 Memcheck:Leak
275 fun:malloc
276 ...
277 fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
278 }
263 279
264 #----------------------------------------------------------------------- 280 #-----------------------------------------------------------------------
265 # 2. intentional unit test errors, or stuff that is somehow a false positive 281 # 2. intentional unit test errors, or stuff that is somehow a false positive
266 # in our own code, or stuff that is so trivial it's not worth fixing 282 # in our own code, or stuff that is so trivial it's not worth fixing
267 283
268 { 284 {
269 logging::InitLogging never frees filename. It would be hard to free properly. 285 logging::InitLogging never frees filename. It would be hard to free properly.
270 Memcheck:Leak 286 Memcheck:Leak
271 ... 287 ...
272 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateE NS_20OldFileDeletionStateE 288 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateE NS_20OldFileDeletionStateE
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
1153 { 1169 {
1154 bug_21010a 1170 bug_21010a
1155 Memcheck:Value4 1171 Memcheck:Value4
1156 fun:_ZN2v88internal10PagedSpace10FindObjectEPh 1172 fun:_ZN2v88internal10PagedSpace10FindObjectEPh
1157 } 1173 }
1158 { 1174 {
1159 bug_21010b 1175 bug_21010b
1160 Memcheck:Value4 1176 Memcheck:Value4
1161 fun:_ZN2v88internal18HeapObjectIterator17HasNextInNextPageEv 1177 fun:_ZN2v88internal18HeapObjectIterator17HasNextInNextPageEv
1162 } 1178 }
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