OLD | NEW |
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 Loading... |
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 Loading... |
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)) |
OLD | NEW |