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

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

Issue 2384243005: Add initial CL for RandomOrder chromium.fyi bot (Closed)
Patch Set: Update build machine based on new bot allocation Created 4 years, 2 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 '--additional-driver-flag', 179 '--additional-driver-flag',
180 '--enable-blink-features=TraceWrappables', 180 '--enable-blink-features=TraceWrappables',
181 ]), 181 ]),
182 ], 182 ],
183 'testing': { 183 'testing': {
184 'platform': 'linux', 184 'platform': 'linux',
185 }, 185 },
186 'enable_swarming': True, 186 'enable_swarming': True,
187 'use_isolate': True, 187 'use_isolate': True,
188 }, 188 },
189 'WebKit Linux - RandomOrder':{
190 'chromium_config': 'chromium',
191 'chromium_apply_config': ['mb','ninja_confirm_noop'],
192 'gclient_config': 'chromium',
193 'chromium_config_kwargs': {
194 'BUILD_CONFIG': 'Release',
195 'TARGET_BITS': 64,
196 },
197 'compile_targets': [
198 'blink_tests',
199 ],
200 'tests': [
201 steps.BlinkTest(extra_args=[
202 '--order=random',
203 '--seed=$(date +%s)',
qyearsley 2016/10/07 21:56:58 Hm, I suspect that this may not actually be expand
jeffcarp 2016/10/07 23:16:35 Good catch, I don't know, can we just try it and s
204 ]),
205 ],
206 'testing': {
207 'platform': 'linux',
208 },
209 'enable_swarming': True,
210 'use_isolate': True,
211 },
189 'WebKit Mac - WPTServe':{ 212 'WebKit Mac - WPTServe':{
190 'chromium_config': 'chromium', 213 'chromium_config': 'chromium',
191 'chromium_apply_config': ['mb','ninja_confirm_noop'], 214 'chromium_apply_config': ['mb','ninja_confirm_noop'],
192 'gclient_config': 'chromium', 215 'gclient_config': 'chromium',
193 'chromium_config_kwargs': { 216 'chromium_config_kwargs': {
194 'BUILD_CONFIG': 'Release', 217 'BUILD_CONFIG': 'Release',
195 'TARGET_BITS': 64, 218 'TARGET_BITS': 64,
196 }, 219 },
197 'compile_targets': [ 220 'compile_targets': [
198 'blink_tests', 221 'blink_tests',
(...skipping 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after
2057 'TARGET_PLATFORM': 'win', 2080 'TARGET_PLATFORM': 'win',
2058 'TARGET_BITS': 32, 2081 'TARGET_BITS': 32,
2059 }, 2082 },
2060 'bot_type': 'builder_tester', 2083 'bot_type': 'builder_tester',
2061 'testing': { 'platform': 'win', }, 2084 'testing': { 'platform': 'win', },
2062 'use_isolate': True, 2085 'use_isolate': True,
2063 'enable_swarming': True, 2086 'enable_swarming': True,
2064 }, 2087 },
2065 }, 2088 },
2066 } 2089 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698