aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/test.py
diff options
context:
space:
mode:
authorGravatar Stephan Altmueller <stephana@google.com>2017-09-11 15:32:21 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-12 14:20:00 +0000
commit74dac545488cb8827479c69ba5324e830083440f (patch)
treea33023c8423c007c87f29748098663f771f25ee8 /infra/bots/recipes/test.py
parentff72a0857f4d1b13f3fe9f8d99020e04e2507729 (diff)
Make output of all tests verbose
Re-enable more verbose output across all bots. There is no good reason why we shouldn't collect additional information that helps triaging failure. Some of the current output might have to be expanded down the road. Bug: skia: Change-Id: I5ff89a803f1e390bbd859756cba53a359d2801ba Reviewed-on: https://skia-review.googlesource.com/45140 Reviewed-by: Eric Boren <borenet@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Stephan Altmueller <stephana@google.com>
Diffstat (limited to 'infra/bots/recipes/test.py')
-rw-r--r--infra/bots/recipes/test.py24
1 files changed, 2 insertions, 22 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index 5192bcb9fe..494296b6ee 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -657,28 +657,8 @@ def dm_flags(api, bot):
or 'Win8-MSVC-ShuttleB' in bot):
args.append('--noRAW_threading')
- # Some people don't like verbose output.
- verbose = False
-
- if 'Intel' in bot and api.vars.is_linux and not 'Vulkan' in bot:
- # TODO(dogben): Track down what's causing bots to die.
- verbose = True
-
- if 'Valgrind' in bot and 'PreAbandonGpuContext' in bot:
- verbose = True
-
- 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.
- verbose = True
-
- if 'Android' in bot or 'iOS' in bot:
- # Enable verbose output on mobile platforms.
- verbose = True
-
- if verbose:
- args.append('--verbose')
+ # Let's make all bots produce verbose output by default.
+ args.append('--verbose')
return args