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

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

Issue 12284008: Add a TODO comment to remind us when we will be able to remove the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add suppressions_linux.txt Created 7 years, 10 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 | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # There are three kinds of suppressions in this file:
2 # 1. Third party stuff we have no control over.
3 #
4 # 2. Intentional unit test errors, stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing.
6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system.
9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions.
11 #-----------------------------------------------------------------------
12
13 # 1. Third party stuff we have no control over.
14 {
15 # The InvalidRead error in rc4_wordconv is intentional.
wtc 2013/02/19 19:35:55 This suppression was in Section 2 of suppressions.
16 # https://bugzilla.mozilla.org/show_bug.cgi?id=341127
17 # TODO(wtc): This invalid read has been fixed in NSS 3.14.4. Remove this
18 # suppression when the system NSS libraries in Linux distributions are
19 # version 3.14.4 or later.
20 bug_43113 (Intentional)
21 Memcheck:Unaddressable
22 fun:rc4_wordconv
23 fun:RC4_Encrypt
24 }
25
26 # 2. Intentional unit test errors, stuff that is somehow a false positive
27 # in our own code, or stuff that is so trivial it's not worth fixing.
28
29 # 3. Suppressions for real chromium bugs that are not yet fixed.
OLDNEW
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698