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

Unified Diff: tools/dm_flags.py

Issue 1085583006: iOS platform scripts to be used by buildbots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Removed trailing white spaces Created 5 years, 7 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 | « platform_tools/ios/bin/ios_umount.sh ('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..b4a28db46d1f0f25bc8aa189a7cec5e920d3f1d7 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)
« no previous file with comments | « platform_tools/ios/bin/ios_umount.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698