aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar stephana <stephana@chromium.org>2015-05-05 07:55:06 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-05 07:55:06 -0700
commitdeee2980f41cb9586bb7a596cf99d25775f7c698 (patch)
treecb90d17de32a90fb473aec5fdbbb71c82d1f5b4a /tools
parent7d3bdc3aa53ef953318db2611c51e0eef4ee4214 (diff)
cleanup
Diffstat (limited to 'tools')
-rwxr-xr-xtools/dm_flags.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 7715a07f58..b4a28db46d 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -41,7 +41,8 @@ def get_args(bot):
# MSAA. The Tegra2 and Tegra3 just don't support it.
if ('GalaxyS4' not in bot and
'NexusPlayer' not in bot and
- 'Tegra3' not in bot):
+ 'Tegra3' not in bot and
+ 'iOS' not in bot):
if 'Android' in bot:
configs.append('msaa4')
else:
@@ -127,6 +128,12 @@ def get_args(bot):
blacklist.extend('pdf skp _ desk_baidu.skp'.split(' '))
blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' '))
+ if 'iOS' in bot:
+ blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' '))
+ blacklist.extend('gpu image decode _ msaa image decode _'.split(' '))
+ blacklist.extend('gpu image subset _ msaa image subset _'.split(' '))
+ blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' '))
+
if blacklist:
args.append('--blacklist')
args.extend(blacklist)
@@ -148,6 +155,9 @@ def get_args(bot):
if 'NexusPlayer' in bot:
match.append('~ResourceCache')
+ if 'iOS' in bot:
+ match.append('~WritePixels')
+
if match:
args.append('--match')
args.extend(match)