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

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

Issue 1124073003: Add gfx_unittests target to the list of Android stable test suites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE + VALID_TESTS 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') | 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 std_host_tests = ['check_webview_licenses'] 120 std_host_tests = ['check_webview_licenses']
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 ] 131 ]
131 flakiness_server = ( 132 flakiness_server = (
132 '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER) 133 '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER)
133 experimental = ['--experimental'] 134 experimental = ['--experimental']
134 bisect_chrome_output_dir = os.path.abspath( 135 bisect_chrome_output_dir = os.path.abspath(
135 os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir, 136 os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir,
136 os.pardir, 'bisect', 'src', 'out')) 137 os.pardir, 'bisect', 'src', 'out'))
137 B = BotConfig 138 B = BotConfig
138 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None: 139 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None:
139 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args, 140 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args,
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 for command in commands: 310 for command in commands:
310 print 'Will run: ', bb_utils.CommandToString(command) 311 print 'Will run: ', bb_utils.CommandToString(command)
311 print 312 print
312 313
313 env = GetEnvironment(bot_config.host_obj, options.testing) 314 env = GetEnvironment(bot_config.host_obj, options.testing)
314 return RunBotCommands(options, commands, env) 315 return RunBotCommands(options, commands, env)
315 316
316 317
317 if __name__ == '__main__': 318 if __name__ == '__main__':
318 sys.exit(main(sys.argv)) 319 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698