Add frame_larger_than_image.gif to blacklist

BUG=skia:

Review URL: https://codereview.chromium.org/1471373003
This commit is contained in:
msarett 2015-11-25 05:36:07 -08:00 committed by Commit bot
parent 8b6ab36940
commit 43432f333a
2 changed files with 193 additions and 0 deletions

View File

@ -1036,6 +1036,194 @@
"~desk_yahoonews_0",
"~ResourceCache"
],
"Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release": [
"--matrix",
"0",
"1",
"1",
"0",
"--config",
"565",
"8888",
"gpu",
"upright-matrix-8888",
"upright-matrix-gpu",
"msaa16",
"pdf",
"pdf_poppler",
"serialize-8888",
"tiles_rt-8888",
"pipe-8888",
"--src",
"tests",
"gm",
"image",
"--blacklist",
"_",
"image",
"decode",
"pal8os2v2.bmp",
"_",
"image",
"decode",
"pal8v4.bmp",
"_",
"image",
"decode",
"pal8v5.bmp",
"_",
"image",
"decode",
"rgb16-565.bmp",
"_",
"image",
"decode",
"rgb16-565pal.bmp",
"_",
"image",
"decode",
"rgb32-111110.bmp",
"_",
"image",
"decode",
"rgb32bf.bmp",
"_",
"image",
"decode",
"rgba32.bmp",
"_",
"image",
"decode",
"rgba32abf.bmp",
"_",
"image",
"decode",
"rgb24largepal.bmp",
"_",
"image",
"decode",
"pal8os2v2-16.bmp",
"_",
"image",
"decode",
"pal8oversizepal.bmp",
"_",
"image",
"decode",
"pal4rletrns.bmp",
"_",
"image",
"decode",
"pal8rletrns.bmp",
"_",
"image",
"decode",
"4bpp-pixeldata-cropped.bmp",
"_",
"image",
"decode",
"8bpp-pixeldata-cropped.bmp",
"_",
"image",
"decode",
"24bpp-pixeldata-cropped.bmp",
"_",
"image",
"decode",
"32bpp-pixeldata-cropped.bmp",
"_",
"image",
"decode",
"testcase7.bmp",
"_",
"image",
"decode",
"Hopstarter-Mac-Folders-Apple.ico",
"_",
"image",
"decode",
"frame_larger_than_image.gif",
"_",
"image",
"decode",
"inc0.gif",
"_",
"image",
"decode",
"inc1.gif",
"_",
"image",
"decode",
"incInterlaced.gif",
"_",
"image",
"decode",
"inc0.jpg",
"_",
"image",
"decode",
"incGray.jpg",
"_",
"image",
"decode",
"inc0.wbmp",
"_",
"image",
"decode",
"inc1.wbmp",
"_",
"image",
"decode",
"inc0.webp",
"_",
"image",
"decode",
"inc1.webp",
"_",
"image",
"decode",
"inc0.ico",
"_",
"image",
"decode",
"inc1.ico",
"_",
"image",
"decode",
"inc0.png",
"_",
"image",
"decode",
"inc1.png",
"_",
"image",
"decode",
"inc2.png",
"_",
"image",
"decode",
"inc12.png",
"_",
"image",
"decode",
"inc13.png",
"_",
"image",
"decode",
"inc14.png",
"_",
"image",
"_",
"interlaced1.png",
"_",
"image",
"_",
"interlaced2.png",
"_",
"image",
"_",
"interlaced3.png"
],
"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN": [
"--matrix",
"0",

View File

@ -111,6 +111,10 @@ def get_args(bot):
# New ico files that fail on SkImageDecoder
blacklist.extend('_ image decode Hopstarter-Mac-Folders-Apple.ico'.split(' '))
# Gif test image uses uninitialized memory on Mac bots
if 'Mac' in bot:
blacklist.extend('_ image decode frame_larger_than_image.gif'.split(' '))
# Incomplete image tests that fail on SkImageDecoder
blacklist.extend('_ image decode inc0.gif'.split(' '))
blacklist.extend('_ image decode inc1.gif'.split(' '))
@ -212,6 +216,7 @@ def self_test():
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN',
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind',
'Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Debug-ANGLE',
'Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release',
]
cov = coverage.coverage()