Chromium Code Reviews| Index: tools/valgrind/memcheck/suppressions_linux.txt |
| =================================================================== |
| --- tools/valgrind/memcheck/suppressions_linux.txt (revision 0) |
| +++ tools/valgrind/memcheck/suppressions_linux.txt (revision 0) |
| @@ -0,0 +1,29 @@ |
| +# There are three kinds of suppressions in this file: |
| +# 1. Third party stuff we have no control over. |
| +# |
| +# 2. Intentional unit test errors, stuff that is somehow a false positive |
| +# in our own code, or stuff that is so trivial it's not worth fixing. |
| +# |
| +# 3. Suppressions for real chromium bugs that are not yet fixed. |
| +# These should all be in chromium's bug tracking system. |
| +# Periodically we should sweep this file and the bug tracker clean by |
| +# running overnight and removing outdated bugs/suppressions. |
| +#----------------------------------------------------------------------- |
| + |
| +# 1. Third party stuff we have no control over. |
| +{ |
| + # The InvalidRead error in rc4_wordconv is intentional. |
|
wtc
2013/02/19 19:35:55
This suppression was in Section 2 of suppressions.
|
| + # https://bugzilla.mozilla.org/show_bug.cgi?id=341127 |
| + # TODO(wtc): This invalid read has been fixed in NSS 3.14.4. Remove this |
| + # suppression when the system NSS libraries in Linux distributions are |
| + # version 3.14.4 or later. |
| + bug_43113 (Intentional) |
| + Memcheck:Unaddressable |
| + fun:rc4_wordconv |
| + fun:RC4_Encrypt |
| +} |
| + |
| +# 2. Intentional unit test errors, stuff that is somehow a false positive |
| +# in our own code, or stuff that is so trivial it's not worth fixing. |
| + |
| +# 3. Suppressions for real chromium bugs that are not yet fixed. |
| Property changes on: tools/valgrind/memcheck/suppressions_linux.txt |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |