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

Unified Diff: tools/dm_flags.py

Issue 1569823006: DM: more invariants (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: run twice-8888 and 2ndpic-8888 on some bots 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 32431f236d1d26b7d1cae87ede36516cbd19f1e0..3e69661cdc0d4c2cafa026b81bc47f6a71dff914 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -37,6 +37,7 @@ def get_args(bot):
if '-GCE-' in bot:
configs.append('sp-8888')
+ configs.extend(['twice-8888', '2ndpic-8888'])
configs.extend(['remote-8888', 'remote_cache-8888'])
if '-TSAN' not in bot:
@@ -67,7 +68,7 @@ def get_args(bot):
# NP is running out of RAM when we run all these modes. skia:3255
if 'NexusPlayer' not in bot:
configs.extend(mode + '-8888' for mode in
- ['serialize', 'tiles_rt', 'pipe'])
+ ['serialize', 'tiles_rt', 'pic'])
if 'ANGLE' in bot:
configs.append('angle')
@@ -191,6 +192,16 @@ def get_args(bot):
'verylargebitmap', # Windows only.
'verylarge_picture_image']: # Windows only.
blacklist.extend(['serialize-8888', 'gm', '_', test])
+ # skia:4769
+ for test in ['blend',
+ 'drawfilter',
+ 'path_stroke_with_zero_length',
+ 'textblobgeometrychange']:
+ blacklist.extend(['pic-8888', 'gm', '_', test])
+ blacklist.extend(['2ndpic-8888', 'gm', '_', test])
+ blacklist.extend(['sp-8888', 'gm', '_', test])
+ for test in ['patch_primitive']:
+ blacklist.extend(['sp-8888', 'gm', '_', test])
if blacklist:
args.append('--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