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

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

Issue 2366213005: V8: Reduce test expectations by whitelisting
Patch Set: New post process 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
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 from recipe_engine.post_process import Filter
6
5 DEPS = [ 7 DEPS = [
6 'archive', 8 'archive',
7 'chromium', 9 'chromium',
8 'depot_tools/gclient', 10 'depot_tools/gclient',
9 'recipe_engine/json', 11 'recipe_engine/json',
10 'recipe_engine/path', 12 'recipe_engine/path',
11 'recipe_engine/platform', 13 'recipe_engine/platform',
12 'recipe_engine/properties', 14 'recipe_engine/properties',
13 'recipe_engine/raw_io', 15 'recipe_engine/raw_io',
14 'recipe_engine/step', 16 'recipe_engine/step',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 ) + 116 ) +
115 api.step_data('bot_update', retcode=1) 117 api.step_data('bot_update', retcode=1)
116 ) 118 )
117 119
118 yield ( 120 yield (
119 api.v8.test( 121 api.v8.test(
120 'client.v8', 122 'client.v8',
121 'V8 Linux', 123 'V8 Linux',
122 'swarming_collect_failure', 124 'swarming_collect_failure',
123 ) + 125 ) +
124 api.step_data('Check', retcode=1) 126 api.step_data('Check', retcode=1) +
127 api.post_process(Filter('Check')) +
128 api.post_process(Filter('Test262')) +
129 api.post_process(Filter('$result'))
iannucci1 2016/11/01 20:21:51 Hm... I would expect this to remove all of the ste
Michael Achenbach 2016/11/01 20:25:20 Ah, yes you're right! Will change that.
125 ) 130 )
126 131
127 # Simulate a tryjob triggered by the CQ for setting up different swarming 132 # Simulate a tryjob triggered by the CQ for setting up different swarming
128 # default tags. 133 # default tags.
129 yield ( 134 yield (
130 api.v8.test( 135 api.v8.test(
131 'tryserver.v8', 136 'tryserver.v8',
132 'v8_linux_rel_ng_triggered', 137 'v8_linux_rel_ng_triggered',
133 'triggered_by_cq', 138 'triggered_by_cq',
134 requester='commit-bot@chromium.org', 139 requester='commit-bot@chromium.org',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 ) + 408 ) +
404 api.override_step_data( 409 api.override_step_data(
405 'generate_build_files', api.raw_io.stream_output( 410 'generate_build_files', api.raw_io.stream_output(
406 'Writing """\\\n' 411 'Writing """\\\n'
407 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' 412 'goma_dir = "/b/build/slave/cache/cipd/goma"\n'
408 'target_cpu = "x64"\n' 413 'target_cpu = "x64"\n'
409 'use_goma = true\n' 414 'use_goma = true\n'
410 '""" to /path/to/args.gn.\n' 415 '""" to /path/to/args.gn.\n'
411 'moar\n')) 416 'moar\n'))
412 ) 417 )
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux_swarming_collect_failure.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698