aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/test.py
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-06-26 09:09:32 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-06-26 22:19:33 +0000
commitc908906f06bc3dc618cf1896c725bcd7fd1794d8 (patch)
treead492779fd600e2c6fc3dcc077e444dacd396f99 /infra/bots/recipes/test.py
parentc4fcbed6b2b2d1e2253e325b292931cb3d05d3fe (diff)
run NexusPlayer CPU tests verbosely
These were relying on a 15-minute status thread to keep them from timing out. --verbose ought to do the same. CQ_INCLUDE_TRYBOTS=skia.primary:Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Debug-Android Change-Id: I1d1467a5e777df6ec5e79d2d9ea992e69bfaeeb7 Reviewed-on: https://skia-review.googlesource.com/20821 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'infra/bots/recipes/test.py')
-rw-r--r--infra/bots/recipes/test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index 39bbca2ac0..640cfcaef8 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -556,6 +556,12 @@ def dm_flags(bot):
if 'Valgrind' in bot and 'PreAbandonGpuContext' in bot:
args.append('--verbose')
+ if 'NexusPlayer' in bot and 'CPU' in bot:
+ # The Nexus Player's image decoding tests are slow enough that swarming
+ # times it out for not printing anything frequently enough. --verbose
+ # makes dm print something every time we start or complete a task.
+ args.append('--verbose')
+
return args