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

Unified Diff: tools/dm_flags.py

Issue 1676663002: Test CodecImageGenerator on GPU bots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Surround size check with SK_SUPPORT_GPU 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 beb3085b84930cb60edd505288a0c3a8fc233622..67052bec2fa9ed1173b75210dbe8349e8300bde5 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -80,13 +80,9 @@ def get_args(bot):
args.append('--config')
args.extend(configs)
- # Run tests and gms everywhere,
- # and image decoding tests everywhere except GPU bots.
+ # Run tests, gms, and image decoding tests everywhere.
# TODO: remove skp from default --src list?
- if 'GPU' in bot:
- args.extend('--src tests gm'.split(' '))
- else:
- args.extend('--src tests gm image'.split(' '))
+ args.extend('--src tests gm image'.split(' '))
if 'GalaxyS' in bot:
args.extend(('--threads', '0'))
« 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