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

Unified Diff: tools/dm_flags.py

Issue 1260673002: SkScaledCodec class (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Stop DM from running large interlaced images on 32-bit Ubuntu GCE bots b/c they are running out of … Created 5 years, 4 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 | « src/codec/SkSwizzler.cpp ('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 40673c74e6f0473aec8219ab20de658d818828d6..9019b028354279a686cfbcd0c4d18d2139e62a5e 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -138,6 +138,12 @@ def get_args(bot):
blacklist.extend('gpu image subset _ msaa image subset _'.split(' '))
blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' '))
+ # the 32-bit GCE bots run out of memory in DM when running these large images
+ if 'x86' in bot and not 'x86-64' in bot:
+ blacklist.extend('_ image _ interlaced1.png'.split(' '))
+ blacklist.extend('_ image _ interlaced2.png'.split(' '))
+ blacklist.extend('_ image _ interlaced3.png'.split(' '))
+
if blacklist:
args.append('--blacklist')
args.extend(blacklist)
« no previous file with comments | « src/codec/SkSwizzler.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698