aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar stephana <stephana@google.com>2015-05-21 13:59:36 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-21 13:59:36 -0700
commit18b72db6aa4033d1b4e5416aa0a613140a370c12 (patch)
tree6e1fbf05fcff6a951eee2df4266ba6caf27ac001 /tools
parente59e1b22a3f2c60cb39d5585ae021fd3d08e2f16 (diff)
Temporarily disable nanobench to see what else is in the way of the bots going green.
NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1147333002
Diffstat (limited to 'tools')
-rwxr-xr-xtools/nanobench_flags.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/nanobench_flags.py b/tools/nanobench_flags.py
index fb6d86363a..b96761c6ee 100755
--- a/tools/nanobench_flags.py
+++ b/tools/nanobench_flags.py
@@ -31,6 +31,9 @@ def get_args(bot):
args.extend(['--scales', '1.0', '1.1'])
+ if 'iOS' in bot:
+ args.extend(['--skps', 'ignore_skps'])
+
config = ['565', '8888', 'gpu', 'nonrendering', 'angle', 'hwui']
# The S4 crashes and the NP produces a long error stream when we run with
# MSAA.
@@ -65,6 +68,12 @@ def get_args(bot):
if 'NexusPlayer' in bot:
match.append('~desk_unicodetable')
+ if 'iOS' in bot:
+ match.append('~blurroundrect')
+ match.append('~patch_grid') # skia:2847
+ match.append('~desk_carsvg')
+ match.append('~keymobi')
+
if match:
args.append('--match')
args.extend(match)
@@ -81,6 +90,7 @@ def self_test():
'Perf-Android-GCC-NexusPlayer-GPU-PowerVR-x86-Release',
'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
'Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Debug-ANGLE',
+ 'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug',
]
cov = coverage.coverage()