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 399081: Enable TCMalloc on Linux by default. (Closed)
Patch Set: Oops, remove unintended change. Created 11 years, 1 month 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 | « third_party/tcmalloc/tcmalloc_linux.cc ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 fun:pthread_create@@GLIBC_2.1 339 fun:pthread_create@@GLIBC_2.1
340 } 340 }
341 { 341 {
342 leak_in_ps 342 leak_in_ps
343 Memcheck:Leak 343 Memcheck:Leak
344 fun:malloc 344 fun:malloc
345 fun:nss_parse_service_list 345 fun:nss_parse_service_list
346 ... 346 ...
347 obj:/bin/ps 347 obj:/bin/ps
348 } 348 }
349 {
350 # Valgrind issues with tcmalloc's VDSOSupport module
351 bug_28149a
352 Memcheck:Addr1
353 fun:_ZN4base11VDSOSupport11ElfMemImage4InitEPKv
354 fun:_ZN4base11VDSOSupport11ElfMemImageC1EPKv
355 fun:_ZN4base11VDSOSupportC1Ev
356 fun:_ZN4base11VDSOSupport4InitEv
357 fun:_ZN4base14VDSOInitHelperC1Ev
358 fun:_Z41__static_initialization_and_destruction_0ii
359 fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
360 obj:/b/slave/webkit-rel-linux-valgrind-layout/build/src/sconsbuild/Release/te st_shell
361 obj:/b/slave/webkit-rel-linux-valgrind-layout/build/src/sconsbuild/Release/te st_shell
362 fun:__libc_csu_init
363 fun:(below main)
364 }
365 {
366 # Valgrind issues with tcmalloc's VDSOSupport module
367 bug_28149b
368 Memcheck:Addr4
369 ...
370 fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
371 ...
372 fun:_Z41__static_initialization_and_destruction_0ii
373 ...
374 }
349 375
350 #----------------------------------------------------------------------- 376 #-----------------------------------------------------------------------
351 # 2. intentional unit test errors, or stuff that is somehow a false positive 377 # 2. intentional unit test errors, or stuff that is somehow a false positive
352 # in our own code, or stuff that is so trivial it's not worth fixing 378 # in our own code, or stuff that is so trivial it's not worth fixing
353 379
354 { 380 {
355 logging::InitLogging never frees filename. It would be hard to free properly. 381 logging::InitLogging never frees filename. It would be hard to free properly.
356 Memcheck:Leak 382 Memcheck:Leak
357 ... 383 ...
358 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateE NS_20OldFileDeletionStateE 384 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateE NS_20OldFileDeletionStateE
(...skipping 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1640 fun:_ZN8chromeos14NetworkLibrary24NetworkTrafficTimerFiredEv 1666 fun:_ZN8chromeos14NetworkLibrary24NetworkTrafficTimerFiredEv
1641 fun:_Z16DispatchToMethodIN8chromeos14NetworkLibraryEMS1_FvvEEvPT_T0_RK6Tuple0 1667 fun:_Z16DispatchToMethodIN8chromeos14NetworkLibraryEMS1_FvvEEvPT_T0_RK6Tuple0
1642 fun:_ZN4base9BaseTimerIN8chromeos14NetworkLibraryELb0EE9TimerTask3RunEv 1668 fun:_ZN4base9BaseTimerIN8chromeos14NetworkLibraryELb0EE9TimerTask3RunEv
1643 fun:_ZN11MessageLoop7RunTaskEP4Task 1669 fun:_ZN11MessageLoop7RunTaskEP4Task
1644 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE 1670 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
1645 fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE 1671 fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
1646 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE 1672 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
1647 fun:_ZN11MessageLoop11RunInternalEv 1673 fun:_ZN11MessageLoop11RunInternalEv
1648 fun:_ZN11MessageLoop10RunHandlerEv 1674 fun:_ZN11MessageLoop10RunHandlerEv
1649 } 1675 }
OLDNEW
« no previous file with comments | « third_party/tcmalloc/tcmalloc_linux.cc ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698