aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2015-04-23 12:44:31 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-23 12:44:31 -0700
commite1d7e0f0a5de883fa1a2ff935c718220c7643101 (patch)
treece117c77c8782ced7cd19227b5132aefb07dad65 /tools
parent92888e71e07688ee8c2477745c2f426c1b1b122d (diff)
Blacklist desk_unicodetable SKP on Nexus Player
It's getting us killed for OOM. BUG=skia:3240 Review URL: https://codereview.chromium.org/1104693002
Diffstat (limited to 'tools')
-rwxr-xr-xtools/nanobench_flags.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/nanobench_flags.py b/tools/nanobench_flags.py
index 6c9b9dd070..fb6d86363a 100755
--- a/tools/nanobench_flags.py
+++ b/tools/nanobench_flags.py
@@ -62,6 +62,9 @@ def get_args(bot):
match.extend(['~gradient', '~etc1bitmap']) # skia:2895
if 'Nexus7' in bot:
match = ['skp'] # skia:2774
+ if 'NexusPlayer' in bot:
+ match.append('~desk_unicodetable')
+
if match:
args.append('--match')
args.extend(match)
@@ -75,6 +78,7 @@ def self_test():
args = {}
cases = [
'Perf-Android-Nexus7-Tegra3-Arm7-Release',
+ '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',
]