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

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

Issue 2825059: Fix an unitialized read in a unit test to appease valgrind (Closed)
Patch Set: fix problem instead of suppressing it Created 10 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
« no previous file with comments | « no previous file | webkit/glue/media/buffered_data_source.h » ('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 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 ... 682 ...
683 fun:_ZN3net18TestServerLauncher16LoadTestRootCertEv 683 fun:_ZN3net18TestServerLauncher16LoadTestRootCertEv
684 } 684 }
685 { 685 {
686 # uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose 686 # uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose
687 Intentional_crash 687 Intentional_crash
688 Memcheck:Addr4 688 Memcheck:Addr4
689 fun:_ZN12AboutHandler10AboutCrashEv 689 fun:_ZN12AboutHandler10AboutCrashEv
690 } 690 }
691 { 691 {
692 # Valgrind gives false positive on initialized fields in
693 # BufferedResourceLoader::RestartLoadingTask().
694 # see https://bugs.kde.org/show_bug.cgi?id=243992
695 valgrind_bug_243992
696 Memcheck:Cond
697 fun:_ZN11webkit_glue22BufferedResourceLoader20DisableDeferIfNeededEv
698 fun:_ZN11webkit_glue22BufferedResourceLoader13SetAllowDeferEb
699 fun:_ZN11webkit_glue18BufferedDataSource18RestartLoadingTaskEv
700 ...
701 }
702 {
703 # Very similar to the above bug, but in WatchDogTask().
704 # see https://bugs.kde.org/show_bug.cgi?id=243992
705 valgrind_bug_243992b
706 Memcheck:Cond
707 fun:_ZN11webkit_glue22BufferedResourceLoader20DisableDeferIfNeededEv
708 ...
709 fun:_ZN11webkit_glue18BufferedDataSource12WatchDogTaskEv
710 }
711 {
712 # Minor commandline options leak in v8 692 # Minor commandline options leak in v8
713 # See http://code.google.com/p/v8/issues/detail?id=275 693 # See http://code.google.com/p/v8/issues/detail?id=275
714 v8_bug_275 694 v8_bug_275
715 Memcheck:Leak 695 Memcheck:Leak
716 fun:_Znaj 696 fun:_Znaj
717 ... 697 ...
718 fun:_ZN2v88internal8FlagList18SetFlagsFromStringEPKci 698 fun:_ZN2v88internal8FlagList18SetFlagsFromStringEPKci
719 } 699 }
720 { 700 {
721 # Non-joinable thread doesn't clean up all state on program exit 701 # Non-joinable thread doesn't clean up all state on program exit
(...skipping 2997 matching lines...) Expand 10 before | Expand all | Expand 10 after
3719 Memcheck:Value4 3699 Memcheck:Value4
3720 fun:modp_b64_encode 3700 fun:modp_b64_encode
3721 fun:_ZN4base12Base64EncodeERKSsPSs 3701 fun:_ZN4base12Base64EncodeERKSsPSs
3722 fun:_ZN3net14HttpAuthGSSAPI17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwEE S6_RS5_PSs 3702 fun:_ZN3net14HttpAuthGSSAPI17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwEE S6_RS5_PSs
3723 ... 3703 ...
3724 fun:_ZN3net24HttpAuthHandlerNegotiate6DoLoopEi 3704 fun:_ZN3net24HttpAuthHandlerNegotiate6DoLoopEi
3725 fun:_ZN3net24HttpAuthHandlerNegotiate21GenerateAuthTokenImplEPKSbIwSt11char_t raitsIwESaIwEES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs 3705 fun:_ZN3net24HttpAuthHandlerNegotiate21GenerateAuthTokenImplEPKSbIwSt11char_t raitsIwESaIwEES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs
3726 fun:_ZN3net15HttpAuthHandler17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwE ES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs 3706 fun:_ZN3net15HttpAuthHandler17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwE ES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs
3727 fun:_ZN3net46HttpAuthHandlerNegotiateTest_DisableCname_Test8TestBodyEv 3707 fun:_ZN3net46HttpAuthHandlerNegotiateTest_DisableCname_Test8TestBodyEv
3728 } 3708 }
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/media/buffered_data_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698