aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/test.py
diff options
context:
space:
mode:
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