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

Unified Diff: tools/dm_flags.py

Issue 1663453002: Test CodecImageGenerator on GPU bots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 f7398b414695410cd1d55c2ab7c7d4c789dd1e79..16f2d4af63299f20c31506d04c8248ebadf05bce 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