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

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

Issue 1720873002: swarming: always append task's OS dimension to step name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 10 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 | Annotate | Revision Log
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 DEPS = [ 5 DEPS = [
6 'archive', 6 'archive',
7 'chromium', 7 'chromium',
8 'depot_tools/gclient', 8 'depot_tools/gclient',
9 'recipe_engine/json', 9 'recipe_engine/json',
10 'recipe_engine/path', 10 'recipe_engine/path',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ) + 194 ) +
195 api.override_step_data('Check', api.v8.one_failure()) 195 api.override_step_data('Check', api.v8.one_failure())
196 ) 196 )
197 197
198 yield ( 198 yield (
199 api.v8.test( 199 api.v8.test(
200 'client.v8', 200 'client.v8',
201 'V8 Fuzzer', 201 'V8 Fuzzer',
202 'fuzz_archive', 202 'fuzz_archive',
203 ) + 203 ) +
204 api.override_step_data('Fuzz', retcode=1) 204 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1)
205 ) 205 )
206 206
207 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps: 207 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps:
208 # Bisect a0 -> no failures. 208 # Bisect a0 -> no failures.
209 # Bisect a2 -> failures. 209 # Bisect a2 -> failures.
210 # Bisect a1 -> no failures. 210 # Bisect a1 -> no failures.
211 # Report culprit a2. 211 # Report culprit a2.
212 yield ( 212 yield (
213 api.v8.test( 213 api.v8.test(
214 'client.v8', 214 'client.v8',
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 api.v8.fail('Mjsunit') + 332 api.v8.fail('Mjsunit') +
333 api.override_step_data( 333 api.override_step_data(
334 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) + 334 'Bisect.Fetch changes', api.v8.example_one_buildbot_change()) +
335 api.override_step_data( 335 api.override_step_data(
336 'Bisect.Get change range', 336 'Bisect.Get change range',
337 api.v8.example_bisection_range_one_change(), 337 api.v8.example_bisection_range_one_change(),
338 ) + 338 ) +
339 339
340 api.time.step(120) 340 api.time.step(120)
341 ) 341 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698