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

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

Issue 1140703004: Run gl_unittests in Android FYI bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added gl_unittests to config Created 5 years, 7 months 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
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | build/android/pylib/gtest/gtest_config.py » ('j') | 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 std_build_steps = ['compile', 'zip_build'] 121 std_build_steps = ['compile', 'zip_build']
122 std_test_steps = ['extract_build'] 122 std_test_steps = ['extract_build']
123 std_tests = ['ui', 'unit'] 123 std_tests = ['ui', 'unit']
124 telemetry_tests = ['telemetry_perf_unittests'] 124 telemetry_tests = ['telemetry_perf_unittests']
125 telemetry_tests_user_build = ['telemetry_unittests', 125 telemetry_tests_user_build = ['telemetry_unittests',
126 'telemetry_perf_unittests'] 126 'telemetry_perf_unittests']
127 trial_tests = [ 127 trial_tests = [
128 'base_junit_tests', 128 'base_junit_tests',
129 'components_browsertests', 129 'components_browsertests',
130 'gfx_unittests', 130 'gfx_unittests',
131 'gl_unittests',
131 ] 132 ]
132 flakiness_server = ( 133 flakiness_server = (
133 '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER) 134 '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER)
134 experimental = ['--experimental'] 135 experimental = ['--experimental']
135 bisect_chrome_output_dir = os.path.abspath( 136 bisect_chrome_output_dir = os.path.abspath(
136 os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir, 137 os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir,
137 os.pardir, 'bisect', 'src', 'out')) 138 os.pardir, 'bisect', 'src', 'out'))
138 B = BotConfig 139 B = BotConfig
139 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None: 140 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None:
140 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args, 141 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args,
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 for command in commands: 311 for command in commands:
311 print 'Will run: ', bb_utils.CommandToString(command) 312 print 'Will run: ', bb_utils.CommandToString(command)
312 print 313 print
313 314
314 env = GetEnvironment(bot_config.host_obj, options.testing) 315 env = GetEnvironment(bot_config.host_obj, options.testing)
315 return RunBotCommands(options, commands, env) 316 return RunBotCommands(options, commands, env)
316 317
317 318
318 if __name__ == '__main__': 319 if __name__ == '__main__':
319 sys.exit(main(sys.argv)) 320 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | build/android/pylib/gtest/gtest_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698