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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 2153503006: Add config for Linux layout test try bot with --enable-slimming-paint-v2. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix extra flag and run recipe_simulation_test train Created 4 years, 4 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'TARGET_BITS': 64, 127 'TARGET_BITS': 64,
128 }, 128 },
129 'bot_type': 'builder_tester', 129 'bot_type': 'builder_tester',
130 'compile_targets': [ 130 'compile_targets': [
131 'all', 131 'all',
132 ], 132 ],
133 'testing': { 133 'testing': {
134 'platform': 'linux', 134 'platform': 'linux',
135 }, 135 },
136 }, 136 },
137 # There are no slaves for this builder and this builder doesn't
138 # appear on the actual continuous waterfall; this configuration
139 # is here so that a try bot can be added.
140 'WebKit Linux slimming_paint_v2 Dummy Builder': {
141 'chromium_config': 'chromium',
142 'chromium_apply_config': ['mb','ninja_confirm_noop'],
143 'gclient_config': 'chromium',
144 'chromium_config_kwargs': {
145 'BUILD_CONFIG': 'Release',
146 'TARGET_BITS': 64,
147 },
148 'compile_targets': [
149 'blink_tests',
150 ],
151 'test_generators': [
152 steps.generate_gtest,
153 steps.generate_script,
154 ],
155 'tests': [
156 steps.BlinkTest(extra_args=[
157 '--additional-driver-flag=--enable-slimming-paint-v2',
158 ]),
159 ],
160 'testing': {
161 'platform': 'linux',
162 },
163 'enable_swarming': True,
164 'use_isolate': True,
165 },
137 'WebKit Linux - WPTServe':{ 166 'WebKit Linux - WPTServe':{
138 'chromium_config': 'chromium', 167 'chromium_config': 'chromium',
139 'chromium_apply_config': ['mb','ninja_confirm_noop'], 168 'chromium_apply_config': ['mb','ninja_confirm_noop'],
140 'gclient_config': 'chromium', 169 'gclient_config': 'chromium',
141 'chromium_config_kwargs': { 170 'chromium_config_kwargs': {
142 'BUILD_CONFIG': 'Release', 171 'BUILD_CONFIG': 'Release',
143 'TARGET_BITS': 64, 172 'TARGET_BITS': 64,
144 }, 173 },
145 'compile_targets': [ 174 'compile_targets': [
146 'blink_tests', 175 'blink_tests',
(...skipping 2107 matching lines...) Expand 10 before | Expand all | Expand 10 after
2254 steps.generate_gtest, 2283 steps.generate_gtest,
2255 steps.generate_script, 2284 steps.generate_script,
2256 steps.generate_isolated_script, 2285 steps.generate_isolated_script,
2257 ], 2286 ],
2258 'testing': { 'platform': 'win', }, 2287 'testing': { 'platform': 'win', },
2259 'use_isolate': True, 2288 'use_isolate': True,
2260 'enable_swarming': True, 2289 'enable_swarming': True,
2261 }, 2290 },
2262 }, 2291 },
2263 } 2292 }
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/slaves.cfg ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698