Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1460)

Side by Side Diff: build/android/buildbot/bb_run_bot.py

Issue 108733003: Run logcat monitor and device status check on bisect bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add device status check (and logcat monitor with it). Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 import collections 7 import collections
8 import copy 8 import copy
9 import json 9 import json
10 import os 10 import os
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 B('x86-builder-dbg', 154 B('x86-builder-dbg',
155 H(compile_step + std_host_tests, target_arch='x86')), 155 H(compile_step + std_host_tests, target_arch='x86')),
156 B('fyi-builder-rel', H(std_build_steps, experimental)), 156 B('fyi-builder-rel', H(std_build_steps, experimental)),
157 B('fyi-tests', H(std_test_steps), 157 B('fyi-tests', H(std_test_steps),
158 T(std_tests, ['--experimental', flakiness_server, 158 T(std_tests, ['--experimental', flakiness_server,
159 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), 159 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])),
160 B('fyi-component-builder-tests-dbg', 160 B('fyi-component-builder-tests-dbg',
161 H(compile_step, extra_gyp='component=shared_library'), 161 H(compile_step, extra_gyp='component=shared_library'),
162 T(std_tests, ['--experimental', flakiness_server])), 162 T(std_tests, ['--experimental', flakiness_server])),
163 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])), 163 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])),
164 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), 164 # Pass empty T([]) so that logcat monitor and device status check are run.
165 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])),
165 B('perf-tests-rel', H(std_test_steps), 166 B('perf-tests-rel', H(std_test_steps),
166 T([], ['--install=ChromiumTestShell'])), 167 T([], ['--install=ChromiumTestShell'])),
167 B('webkit-latest-webkit-tests', H(std_test_steps), 168 B('webkit-latest-webkit-tests', H(std_test_steps),
168 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), 169 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])),
169 B('webkit-latest-contentshell', H(compile_step), 170 B('webkit-latest-contentshell', H(compile_step),
170 T(['webkit_layout'], ['--auto-reconnect'])), 171 T(['webkit_layout'], ['--auto-reconnect'])),
171 B('builder-unit-tests', H(compile_step), T(['unit'])), 172 B('builder-unit-tests', H(compile_step), T(['unit'])),
172 B('webrtc-chromium-builder', 173 B('webrtc-chromium-builder',
173 H(std_build_steps, 174 H(std_build_steps,
174 extra_args=['--build-targets=android_builder_chromium_webrtc'])), 175 extra_args=['--build-targets=android_builder_chromium_webrtc'])),
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 for command in commands: 283 for command in commands:
283 print 'Will run: ', bb_utils.CommandToString(command) 284 print 'Will run: ', bb_utils.CommandToString(command)
284 print 285 print
285 286
286 env = GetEnvironment(bot_config.host_obj, options.testing) 287 env = GetEnvironment(bot_config.host_obj, options.testing)
287 return RunBotCommands(options, commands, env) 288 return RunBotCommands(options, commands, env)
288 289
289 290
290 if __name__ == '__main__': 291 if __name__ == '__main__':
291 sys.exit(main(sys.argv)) 292 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698