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

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

Issue 1242008: Implement more sanity tests for Memcheck/Valgrind (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | « base/tools_sanity_unittest.cc ('k') | tools/valgrind/memcheck_analyze.py » ('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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 fun:_PR_ImplicitInitialization 452 fun:_PR_ImplicitInitialization
453 ... 453 ...
454 fun:_ZN4base14EnsureNSPRInitEv 454 fun:_ZN4base14EnsureNSPRInitEv
455 fun:ChromeMain 455 fun:ChromeMain
456 fun:main 456 fun:main
457 } 457 }
458 #----------------------------------------------------------------------- 458 #-----------------------------------------------------------------------
459 # 2. intentional unit test errors, or stuff that is somehow a false positive 459 # 2. intentional unit test errors, or stuff that is somehow a false positive
460 # in our own code, or stuff that is so trivial it's not worth fixing 460 # in our own code, or stuff that is so trivial it's not worth fixing
461 { 461 {
462 Memcheck sanity test (ToolsSanityTest.MemoryLeak). 462 Memcheck sanity test (memory leak).
463 Memcheck:Leak 463 Memcheck:Leak
464 fun:_Zna* 464 fun:_Zna*
465 fun:_ZN31ToolsSanityTest_MemoryLeak_Test8TestBodyEv 465 fun:_ZN31ToolsSanityTest_MemoryLeak_Test8TestBodyEv
466 } 466 }
467 { 467 {
468 Memcheck sanity test (malloc/read left).
469 Memcheck:Addr1
470 fun:_Z29ReadValueOutOfArrayBoundsLeftPc
471 fun:_Z14MakeSomeErrorsPc*
472 fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
473 }
474 {
475 Memcheck sanity test (malloc/read right).
476 Memcheck:Addr1
477 fun:_Z30ReadValueOutOfArrayBoundsRightPc*
478 fun:_Z14MakeSomeErrorsPc*
479 fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
480 }
481 {
482 Memcheck sanity test (malloc/write left).
483 Memcheck:Addr1
484 fun:_Z30WriteValueOutOfArrayBoundsLeftPc
485 fun:_Z14MakeSomeErrorsPc*
486 fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
487 }
488 {
489 Memcheck sanity test (malloc/write right).
490 Memcheck:Addr1
491 fun:_Z31WriteValueOutOfArrayBoundsRightPc*
492 fun:_Z14MakeSomeErrorsPc*
493 fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
494 }
495 {
496 Memcheck sanity test (new/read left).
497 Memcheck:Addr1
498 fun:_Z29ReadValueOutOfArrayBoundsLeftPc
499 fun:_Z14MakeSomeErrorsPc*
500 fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
501 }
502 {
503 Memcheck sanity test (new/read right).
504 Memcheck:Addr1
505 fun:_Z30ReadValueOutOfArrayBoundsRightPc*
506 fun:_Z14MakeSomeErrorsPc*
507 fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
508 }
509 {
510 Memcheck sanity test (new/write left).
511 Memcheck:Addr1
512 fun:_Z30WriteValueOutOfArrayBoundsLeftPc
513 fun:_Z14MakeSomeErrorsPc*
514 fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
515 }
516 {
517 Memcheck sanity test (new/write right).
518 Memcheck:Addr1
519 fun:_Z31WriteValueOutOfArrayBoundsRightPc*
520 fun:_Z14MakeSomeErrorsPc*
521 fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
522 }
523 {
524 Memcheck sanity test (write after free).
525 Memcheck:Addr1
526 fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
527 }
528 {
529 Memcheck sanity test (write after delete).
530 Memcheck:Addr1
531 fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
532 }
533 {
534 Memcheck sanity test (array deleted without []).
535 Memcheck:Free
536 ...
537 fun:_ZN46ToolsSanityTest_ArrayDeletedWithoutBraces_Test8TestBodyEv
538 }
539 {
540 Memcheck sanity test (single element deleted with []).
541 Memcheck:Free
542 ...
543 fun:_ZN51ToolsSanityTest_SingleElementDeletedWithBraces_Test8TestBodyEv
544 }
545 {
468 logging::InitLogging never frees filename. It would be hard to free properly. 546 logging::InitLogging never frees filename. It would be hard to free properly.
469 Memcheck:Leak 547 Memcheck:Leak
470 ... 548 ...
471 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateE NS_20OldFileDeletionStateE 549 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateE NS_20OldFileDeletionStateE
472 } 550 }
473 { 551 {
474 # See comment on struct CheckOpString 552 # See comment on struct CheckOpString
475 logging::MakeCheckOpString result not freed because app is aborting 553 logging::MakeCheckOpString result not freed because app is aborting
476 Memcheck:Leak 554 Memcheck:Leak
477 fun:_Znw* 555 fun:_Znw*
(...skipping 2078 matching lines...) Expand 10 before | Expand all | Expand 10 after
2556 fun:_ZNK7testing8internal18FunctionMockerBaseIFbvEE20PerformDefaultActionERKN St3tr15tupleINS4_10_NullClassES6_S6_S6_S6_S6_S6_S6_S6_S6_EERKSs 2634 fun:_ZNK7testing8internal18FunctionMockerBaseIFbvEE20PerformDefaultActionERKN St3tr15tupleINS4_10_NullClassES6_S6_S6_S6_S6_S6_S6_S6_S6_EERKSs
2557 fun:_ZN7testing8internal18ActionResultHolderIbE20PerformDefaultActionIFbvENSt 3tr15tupleINS5_10_NullClassES7_S7_S7_S7_S7_S7_S7_S7_S7_EEEES2_PKNS0_18FunctionMo ckerBaseIT_EERKT0_RKSs 2635 fun:_ZN7testing8internal18ActionResultHolderIbE20PerformDefaultActionIFbvENSt 3tr15tupleINS5_10_NullClassES7_S7_S7_S7_S7_S7_S7_S7_S7_EEEES2_PKNS0_18FunctionMo ckerBaseIT_EERKT0_RKSs
2558 fun:_ZN7testing8internal18FunctionMockerBaseIFbvEE10InvokeWithERKNSt3tr15tupl eINS4_10_NullClassES6_S6_S6_S6_S6_S6_S6_S6_S6_EE 2636 fun:_ZN7testing8internal18FunctionMockerBaseIFbvEE10InvokeWithERKNSt3tr15tupl eINS4_10_NullClassES6_S6_S6_S6_S6_S6_S6_S6_S6_EE
2559 fun:_ZN7testing8internal14FunctionMockerIFbvEE6InvokeEv 2637 fun:_ZN7testing8internal14FunctionMockerIFbvEE6InvokeEv
2560 fun:_ZN12browser_sync19SyncBackendHostMock12RequestPauseEv 2638 fun:_ZN12browser_sync19SyncBackendHostMock12RequestPauseEv
2561 ... 2639 ...
2562 fun:_ZN18ProfileSyncService29StartProcessingChangesIfReadyEv 2640 fun:_ZN18ProfileSyncService29StartProcessingChangesIfReadyEv
2563 fun:_ZN18ProfileSyncService20OnBackendInitializedEv 2641 fun:_ZN18ProfileSyncService20OnBackendInitializedEv
2564 fun:_ZN12browser_sync15SyncBackendHost4Core14NotifyFrontendENS1_20FrontendNot ificationE 2642 fun:_ZN12browser_sync15SyncBackendHost4Core14NotifyFrontendENS1_20FrontendNot ificationE
2565 } 2643 }
OLDNEW
« no previous file with comments | « base/tools_sanity_unittest.cc ('k') | tools/valgrind/memcheck_analyze.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698