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

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

Issue 1901103004: V8: Show build environment in failure logs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fix Created 4 years, 8 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'client.v8', 225 'client.v8',
226 'V8 Linux64 - internal snapshot', 226 'V8 Linux64 - internal snapshot',
227 'one_failure', 227 'one_failure',
228 ) + 228 ) +
229 api.override_step_data('Check', api.v8.one_failure()) 229 api.override_step_data('Check', api.v8.one_failure())
230 ) 230 )
231 231
232 yield ( 232 yield (
233 api.v8.test( 233 api.v8.test(
234 'client.v8', 234 'client.v8',
235 'V8 Linux64',
236 'one_failure_build_env_not_supported',
237 ) +
238 api.override_step_data('Check', api.v8.one_failure()) +
239 api.properties(parent_build_environment=None)
240 )
241
242 yield (
243 api.v8.test(
244 'client.v8',
235 'V8 Fuzzer', 245 'V8 Fuzzer',
236 'fuzz_archive', 246 'fuzz_archive',
237 ) + 247 ) +
238 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1) 248 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1)
239 ) 249 )
240 250
241 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps: 251 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps:
242 # Bisect a0 -> no failures. 252 # Bisect a0 -> no failures.
243 # Bisect a2 -> failures. 253 # Bisect a2 -> failures.
244 # Bisect a1 -> no failures. 254 # Bisect a1 -> no failures.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 api.v8.test( 391 api.v8.test(
382 'tryserver.v8', 392 'tryserver.v8',
383 'v8_linux_rel_ng_triggered', 393 'v8_linux_rel_ng_triggered',
384 'slow_tests', 394 'slow_tests',
385 requester='commit-bot@chromium.org', 395 requester='commit-bot@chromium.org',
386 patch_project='v8', 396 patch_project='v8',
387 blamelist=['dude@chromium.org'], 397 blamelist=['dude@chromium.org'],
388 ) + api.override_step_data( 398 ) + api.override_step_data(
389 'Check', api.v8.output_json(unmarked_slow_test=True)) 399 'Check', api.v8.output_json(unmarked_slow_test=True))
390 ) 400 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/v8/test_api.py ('k') | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64_ASAN.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698