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

Unified Diff: tools/dm_flags.py

Issue 1681553003: Optionally run RAW images serially (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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
« dm/DMSrcSink.cpp ('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 663507ebb9c6b943208de35563bd50d772a96b39..a6b872f079fb41e6cdfe26c2092140c507cec6f4 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -155,13 +155,6 @@ 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
- 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(' '))
-
match = []
if 'Valgrind' in bot: # skia:3021
match.append('~Threaded')
@@ -199,6 +192,11 @@ def get_args(bot):
args.append('--match')
args.extend(match)
+ # These bots run out of memory running RAW codec tests. Do not run them in
+ # parallel
+ if 'NexusPlayer' in bot or 'Nexus5' in bot or 'Nexus9' in bot:
+ args.append('--noRAW_threading')
+
return args
cov_end = lineno() # Don't care about code coverage past here.
« dm/DMSrcSink.cpp ('K') | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698