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

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

Issue 2357343004: chromium_tests: automatically set up test genrators (Closed)
Patch Set: 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 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-v8', 9 'build_gs_bucket': 'chromium-v8',
10 }, 10 },
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'v8_bleeding_edge_git', 95 'v8_bleeding_edge_git',
96 'chromium_lkcr', 96 'chromium_lkcr',
97 'show_v8_revision', 97 'show_v8_revision',
98 ], 98 ],
99 'chromium_config_kwargs': { 99 'chromium_config_kwargs': {
100 'BUILD_CONFIG': 'Debug', 100 'BUILD_CONFIG': 'Debug',
101 'TARGET_BITS': 64, 101 'TARGET_BITS': 64,
102 }, 102 },
103 'bot_type': 'tester', 103 'bot_type': 'tester',
104 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, 104 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
105 'test_generators': [
106 steps.generate_gtest,
ghost stip (do not use) 2016/09/22 23:25:50 machenbach: fyi, this shouldn't affect anything
107 steps.generate_script,
108 steps.generate_isolated_script,
109 ],
110 'parent_buildername': 'Linux Debug Builder', 105 'parent_buildername': 'Linux Debug Builder',
111 'testing': { 106 'testing': {
112 'platform': 'linux', 107 'platform': 'linux',
113 'test_spec_file': 'chromium.linux.json', 108 'test_spec_file': 'chromium.linux.json',
114 }, 109 },
115 }, 110 },
116 'Linux ASAN Builder': { 111 'Linux ASAN Builder': {
117 'chromium_config': 'chromium_linux_asan', 112 'chromium_config': 'chromium_linux_asan',
118 'chromium_apply_config': ['mb'], 113 'chromium_apply_config': ['mb'],
119 'gclient_config': 'chromium', 114 'gclient_config': 'chromium',
(...skipping 20 matching lines...) Expand all
140 'v8_bleeding_edge_git', 135 'v8_bleeding_edge_git',
141 'chromium_lkcr', 136 'chromium_lkcr',
142 'show_v8_revision', 137 'show_v8_revision',
143 ], 138 ],
144 'chromium_config_kwargs': { 139 'chromium_config_kwargs': {
145 'BUILD_CONFIG': 'Release', 140 'BUILD_CONFIG': 'Release',
146 'TARGET_BITS': 64, 141 'TARGET_BITS': 64,
147 }, 142 },
148 'bot_type': 'tester', 143 'bot_type': 'tester',
149 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, 144 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
150 'test_generators': [
151 steps.generate_gtest,
152 steps.generate_script,
153 steps.generate_isolated_script,
154 ],
155 'parent_buildername': 'Linux ASAN Builder', 145 'parent_buildername': 'Linux ASAN Builder',
156 'testing': { 146 'testing': {
157 'platform': 'linux', 147 'platform': 'linux',
158 'test_spec_file': 'chromium.memory.json', 148 'test_spec_file': 'chromium.memory.json',
159 }, 149 },
160 }, 150 },
161 'Linux Snapshot Builder': { 151 'Linux Snapshot Builder': {
162 'chromium_config': 'chromium', 152 'chromium_config': 'chromium',
163 'chromium_apply_config': ['mb'], 153 'chromium_apply_config': ['mb'],
164 'gclient_config': 'chromium', 154 'gclient_config': 'chromium',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 'cf_gs_acl': 'public-read', 251 'cf_gs_acl': 'public-read',
262 'cf_archive_name': 'syzyasan', 252 'cf_archive_name': 'syzyasan',
263 'cf_revision_dir': 'v8', 253 'cf_revision_dir': 'v8',
264 'fixed_staging_dir': True, 254 'fixed_staging_dir': True,
265 'compile_targets': ['chromium_builder_asan'], 255 'compile_targets': ['chromium_builder_asan'],
266 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, 256 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
267 'testing': {'platform': 'win'}, 257 'testing': {'platform': 'win'},
268 }, 258 },
269 }, 259 },
270 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698