Chromium Code Reviews| Index: tools/dm_flags.py |
| diff --git a/tools/dm_flags.py b/tools/dm_flags.py |
| index 7715a07f588d1d25f79862561327d66dbc62039d..6b91822386efc6b3cda8e0804625300b3f38ebef 100755 |
| --- a/tools/dm_flags.py |
| +++ b/tools/dm_flags.py |
| @@ -41,7 +41,9 @@ 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): |
| + 'Tegra2' not in bot and |
|
borenet
2015/05/05 12:59:02
Intentional?
stephana-chromium
2015/05/05 13:30:25
Must have been added during a previous merge. Remo
|
| + 'Tegra3' not in bot and |
| + 'iOS' not in bot): |
| if 'Android' in bot: |
| configs.append('msaa4') |
| else: |
| @@ -127,6 +129,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 +156,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) |