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

Unified Diff: tools/dm_flags.py

Issue 1125793002: Add matrix configs to DM (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 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/DM.cpp ('K') | « dm/DM.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 7715a07f588d1d25f79862561327d66dbc62039d..bca93858f878265f271e140ebaf8696b75721424 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -31,6 +31,12 @@ def get_args(bot):
configs = ['565', '8888', 'gpu']
+ if '-CPU-' in bot:
mtklein 2015/05/05 15:51:44 You ought to be able to just put 'matrix-8888' and
+ configs.append('matrix-8888')
+ elif '-GPU-' in bot:
+ configs.append('matrix-gpu')
+ args.extend('--matrix 8 6 7 5 3 0 9 3 9'.split(' '))
+
if 'TegraK1' in bot or 'GTX550Ti' in bot or 'GTX660' in bot or 'GT610' in bot:
if 'Android' in bot:
configs.append('nvprmsaa4')
« dm/DM.cpp ('K') | « dm/DM.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698