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 # TODO(rnk): Should we move all of the Linux-only system library suppressions 13 # over from suppressions.txt? We'd avoid wasting time parsing and matching 14 # suppressions on non-Linux, which is basically just Mac. 15 # 16 #----------------------------------------------------------------------- 17 18 # 1. Third party stuff we have no control over. 19 { 20 # The InvalidRead error in rc4_wordconv is intentional. 21 # https://bugzilla.mozilla.org/show_bug.cgi?id=341127 22 # TODO(wtc): This invalid read has been fixed in NSS 3.15. Remove this 23 # suppression when the system NSS libraries in Linux distributions are 24 # version 3.15 or later. 25 bug_43113 (Intentional) 26 Memcheck:Unaddressable 27 fun:rc4_wordconv 28 fun:RC4_Encrypt 29 } 30 31 # 2. Intentional unit test errors, stuff that is somehow a false positive 32 # in our own code, or stuff that is so trivial it's not worth fixing. 33 34 # 3. Suppressions for real chromium bugs that are not yet fixed. 35 36