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

Side by Side Diff: tools/msan/blacklist.txt

Issue 391253003: MSan: temporarily blacklist an uninit in CLD2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove seccomp Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # The rules in this file are only applied at compile time. 1 # The rules in this file are only applied at compile time.
2 # Because the Chrome buildsystem does not automatically touch the files 2 # Because the Chrome buildsystem does not automatically touch the files
3 # mentioned here, changing this file requires clobbering all MSan bots. 3 # mentioned here, changing this file requires clobbering all MSan bots.
4 # 4 #
5 # Please think twice before you add or remove these rules. 5 # Please think twice before you add or remove these rules.
6 6
7 # False positive in ffmpeg due to assembly code. http://crbug.com/344505 7 # False positive in ffmpeg due to assembly code. http://crbug.com/344505
8 fun:ff_get_cpu_flags_x86 8 fun:ff_get_cpu_flags_x86
9 9
10 # Uninit in zlib. http://crbug.com/116277 10 # Uninit in zlib. http://crbug.com/116277
11 fun:*MOZ_Z_deflate* 11 fun:*MOZ_Z_deflate*
12 12
13 # Uninit in Mesa. http://crbug.com/347967 13 # Uninit in Mesa. http://crbug.com/347967
14 fun:unpack_RGBA8888 14 fun:unpack_RGBA8888
15 fun:unpack_RGB888 15 fun:unpack_RGB888
16 16
17 # Bug in MSan, fixed in clang r210020. http://crbug.com/378909 17 # Bug in MSan, fixed in clang r210020. http://crbug.com/378909
18 fun:*convolveVertically_SSE2* 18 fun:*convolveVertically_SSE2*
19 19
20 # MSan issue, http://crbug.com/381233 20 # MSan issue, http://crbug.com/381233
21 # (Both functions call __mm_maddubs_epi16()). 21 # (Both functions call __mm_maddubs_epi16()).
22 fun:*ProcessPixelPairHelper* 22 fun:*ProcessPixelPairHelper*
23 fun:*ProcessOnePixel* 23 fun:*ProcessOnePixel*
24
25 # An actual Chromium bug which is blocking our progress. http://crbug.com/334448
26 fun:*UTF8GenericReplaceInternal*
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698