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

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

Issue 1906353002: Revert of V8: Show build environment in failure logs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: 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(build_environment=None)
240 )
241
242 yield (
243 api.v8.test(
244 'client.v8',
245 'V8 Fuzzer', 235 'V8 Fuzzer',
246 'fuzz_archive', 236 'fuzz_archive',
247 ) + 237 ) +
248 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1) 238 api.override_step_data('Fuzz on Ubuntu-12.04', retcode=1)
249 ) 239 )
250 240
251 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps: 241 # Bisect over range a1, a2, a3. Assume a2 is the culprit. Steps:
252 # Bisect a0 -> no failures. 242 # Bisect a0 -> no failures.
253 # Bisect a2 -> failures. 243 # Bisect a2 -> failures.
254 # Bisect a1 -> no failures. 244 # Bisect a1 -> no failures.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 api.v8.test( 381 api.v8.test(
392 'tryserver.v8', 382 'tryserver.v8',
393 'v8_linux_rel_ng_triggered', 383 'v8_linux_rel_ng_triggered',
394 'slow_tests', 384 'slow_tests',
395 requester='commit-bot@chromium.org', 385 requester='commit-bot@chromium.org',
396 patch_project='v8', 386 patch_project='v8',
397 blamelist=['dude@chromium.org'], 387 blamelist=['dude@chromium.org'],
398 ) + api.override_step_data( 388 ) + api.override_step_data(
399 'Check', api.v8.output_json(unmarked_slow_test=True)) 389 'Check', api.v8.output_json(unmarked_slow_test=True))
400 ) 390 )
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