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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 2068793002: Allow any Chromium trybot to run webkit_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 6 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 | « 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 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import collections 5 import collections
6 6
7 from recipe_engine.types import freeze 7 from recipe_engine.types import freeze
8 8
9 DEPS = [ 9 DEPS = [
10 'depot_tools/bot_update', 10 'depot_tools/bot_update',
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 subproject_tag = 'blink' 140 subproject_tag = 'blink'
141 elif affects_blink_paths: 141 elif affects_blink_paths:
142 subproject_tag = 'blink-paths' 142 subproject_tag = 'blink-paths'
143 else: 143 else:
144 subproject_tag = 'chromium' 144 subproject_tag = 'chromium'
145 api.tryserver.set_subproject_tag(subproject_tag) 145 api.tryserver.set_subproject_tag(subproject_tag)
146 146
147 # TODO(phajdan.jr): Remove special case for layout tests. 147 # TODO(phajdan.jr): Remove special case for layout tests.
148 add_blink_tests = (affects_blink_paths and 148 add_blink_tests = (affects_blink_paths and
149 buildername in CHROMIUM_BLINK_TESTS_BUILDERS) 149 buildername in CHROMIUM_BLINK_TESTS_BUILDERS)
150 add_blink_tests = api.properties.get('force_blink_tests', add_blink_tests)
150 151
151 # Add blink tests that work well with "analyze" here. The tricky ones 152 # Add blink tests that work well with "analyze" here. The tricky ones
152 # that bypass it (like the layout tests) are added later. 153 # that bypass it (like the layout tests) are added later.
153 if add_blink_tests: 154 if add_blink_tests:
154 add_tests([ 155 add_tests([
155 api.chromium_tests.steps.GTestTest('blink_heap_unittests'), 156 api.chromium_tests.steps.GTestTest('blink_heap_unittests'),
156 api.chromium_tests.steps.GTestTest('blink_platform_unittests'), 157 api.chromium_tests.steps.GTestTest('blink_platform_unittests'),
157 api.chromium_tests.steps.GTestTest('webkit_unit_tests'), 158 api.chromium_tests.steps.GTestTest('webkit_unit_tests'),
158 api.chromium_tests.steps.GTestTest('wtf_unittests'), 159 api.chromium_tests.steps.GTestTest('wtf_unittests'),
159 ]) 160 ])
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 props(mastername='tryserver.v8', 910 props(mastername='tryserver.v8',
910 buildername='v8_linux_blink_rel', 911 buildername='v8_linux_blink_rel',
911 patch_project='v8') + 912 patch_project='v8') +
912 api.platform.name('linux') + 913 api.platform.name('linux') +
913 suppress_analyze(more_exclusions=['v8/f.*']) + 914 suppress_analyze(more_exclusions=['v8/f.*']) +
914 api.override_step_data('webkit_tests (with patch)', 915 api.override_step_data('webkit_tests (with patch)',
915 api.test_utils.canned_test_output(passing=False)) + 916 api.test_utils.canned_test_output(passing=False)) +
916 api.override_step_data('webkit_tests (without patch)', 917 api.override_step_data('webkit_tests (without patch)',
917 api.test_utils.canned_test_output(passing=True, minimal=True)) 918 api.test_utils.canned_test_output(passing=True, minimal=True))
918 ) 919 )
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