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

Unified Diff: tools/dm_flags.py

Issue 1332053002: Fill incomplete images in SkCodec parent class (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Forgot to add SkSampler.cpp Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« src/codec/SkWebpCodec.h ('K') | « tools/dm_flags.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dm_flags.py
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 37ff485ed1b387ec0b082c706ebfb2bbb7dbe836..47d064dc6ee4f56cadb3f87c1f678529e893cd99 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -112,6 +112,27 @@ def get_args(bot):
# New ico files that fail on SkImageDecoder
blacklist.extend('_ image decode Hopstarter-Mac-Folders-Apple.ico'.split(' '))
+ # Incomplete image tests that fail on SkImageDecoder
+ blacklist.extend('_ image decode inc0.gif'.split(' '))
+ blacklist.extend('_ image decode inc1.gif'.split(' '))
+ blacklist.extend('_ image decode incInterlaced.gif'.split(' '))
+ blacklist.extend('_ image decode inc0.jpg'.split(' '))
+ blacklist.extend('_ image decode incGray.jpg'.split(' '))
+ blacklist.extend('_ image decode inc0.wbmp'.split(' '))
+ blacklist.extend('_ image decode inc1.wbmp'.split(' '))
+ blacklist.extend('_ image decode inc0.webp'.split(' '))
+ blacklist.extend('_ image decode inc1.webp'.split(' '))
+ blacklist.extend('_ image decode inc0.ico'.split(' '))
+ blacklist.extend('_ image decode inc1.ico'.split(' '))
+ blacklist.extend('_ image decode inc0.png'.split(' '))
+ blacklist.extend('_ image decode inc1.png'.split(' '))
+ blacklist.extend('_ image decode inc2.png'.split(' '))
+ blacklist.extend('_ image decode inc12.png'.split(' '))
+ blacklist.extend('_ image decode inc13.png'.split(' '))
+ blacklist.extend('_ image decode inc14.png'.split(' '))
+ blacklist.extend('_ image subset inc0.webp'.split(' '))
+ blacklist.extend('_ image subset inc1.webp'.split(' '))
+
# Leon doesn't care about this, so why run it?
if 'Win' in bot:
blacklist.extend('_ image decode _'.split(' '))
« src/codec/SkWebpCodec.h ('K') | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698