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

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: Remove ifdefs 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
« 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 e9d5d64bcea9b9a80800ea0a55bbdaf647dfd954..5542e4fb4bb882c4428e63fb66ac5ca97e2f8afc 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -155,14 +155,10 @@ def get_args(bot):
blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
blacklist.extend(['serialize-8888', 'gm', '_', test])
+ # Extensions for RAW images
r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
"ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"]
- # NexusPlayer runs out of memory running RAW codec tests
- if 'NexusPlayer' in bot:
- for raw_ext in r:
- blacklist.extend(('_ image _ .%s' % raw_ext).split(' '))
-
# skbug.com/4888
# Blacklist RAW images on GPU tests until we can resolve failures
if 'GPU' in bot:
@@ -206,6 +202,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.
« 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