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

Unified Diff: tools/dm_flags.py

Issue 1612113002: Update SK_IMAGE_VERSION to test RAW (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Reland, with fixes Created 4 years, 11 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
« no previous file with comments | « 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 f7398b414695410cd1d55c2ab7c7d4c789dd1e79..beb3085b84930cb60edd505288a0c3a8fc233622 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -159,6 +159,13 @@ def get_args(bot):
blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
blacklist.extend(['serialize-8888', 'gm', '_', test])
+ # NexusPlayer runs out of memory running RAW codec tests
scroggo 2016/02/01 15:05:13 Should we file a bug for this? Alternatively, we c
msarett 2016/02/01 15:43:11 I like this idea, but I think it would probably be
+ if 'NexusPlayer' in bot:
+ r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
+ "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"]
+ for raw_ext in r:
+ blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
+
if blacklist:
args.append('--blacklist')
args.extend(blacklist)
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698