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

Side by Side Diff: scripts/slave/recipes/bisect_test/example_bisect_results.py

Issue 1758603004: Checking for failure in requested builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Updating expectations after rebase and sync. Yet again. Created 4 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 """This example file is meant to provide coverage to bisect_results.""" 5 """This example file is meant to provide coverage to bisect_results."""
6 6
7 DEPS = [ 7 DEPS = [
8 'auto_bisect', 8 'auto_bisect',
9 'recipe_engine/json', 9 'recipe_engine/json',
10 'recipe_engine/path', 10 'recipe_engine/path',
(...skipping 10 matching lines...) Expand all
21 'bad_revision': '314017', 21 'bad_revision': '314017',
22 'metric': 'mean_input_event_latency/mean_input_event_latency', 22 'metric': 'mean_input_event_latency/mean_input_event_latency',
23 'repeat_count': '2', 23 'repeat_count': '2',
24 'max_time_minutes': '5', 24 'max_time_minutes': '5',
25 'truncate_percent': '0', 25 'truncate_percent': '0',
26 'bug_id': '', 26 'bug_id': '',
27 'gs_bucket': 'chrome-perf', 27 'gs_bucket': 'chrome-perf',
28 'builder_host': 'master4.golo.chromium.org', 28 'builder_host': 'master4.golo.chromium.org',
29 'builder_port': '8341', 29 'builder_port': '8341',
30 'dummy_builds': 'True', 30 'dummy_builds': 'True',
31 'dummy_job_names': 'True',
31 'bypass_stats_check': 'True', 32 'bypass_stats_check': 'True',
32 'skip_gclient_ops': 'True', 33 'skip_gclient_ops': 'True',
33 } 34 }
34 35
35 BASIC_ATTRIBUTES = { 36 BASIC_ATTRIBUTES = {
36 'bisect_over': True, 37 'bisect_over': True,
37 'results_confidence': 0.99, 38 'results_confidence': 0.99,
38 'warnings': ['This is a demo warning'], 39 'warnings': ['This is a demo warning'],
39 'culprit_present': True, 40 'culprit_present': True,
40 } 41 }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 aborted_bisect_test = api.test('aborted_non_telemetry_test') 167 aborted_bisect_test = api.test('aborted_non_telemetry_test')
167 aborted_bisect_test = get_post_bisect_step_data(api, aborted_bisect_test) 168 aborted_bisect_test = get_post_bisect_step_data(api, aborted_bisect_test)
168 aborted_bisect_test = add_revision_mapping(api, aborted_bisect_test, '314015', 169 aborted_bisect_test = add_revision_mapping(api, aborted_bisect_test, '314015',
169 'c001c0de') 170 'c001c0de')
170 aborted_bisect_test = add_revision_mapping(api, aborted_bisect_test, '314017', 171 aborted_bisect_test = add_revision_mapping(api, aborted_bisect_test, '314017',
171 'deadbeef') 172 'deadbeef')
172 aborted_bisect_test += api.properties( 173 aborted_bisect_test += api.properties(
173 bisect_config = NON_TELEMETRY_TEST_CONFIG, 174 bisect_config = NON_TELEMETRY_TEST_CONFIG,
174 dummy_bisector_attributes = ABORTED_BISECT_ATTRIBUTES) 175 dummy_bisector_attributes = ABORTED_BISECT_ATTRIBUTES)
175 yield aborted_bisect_test 176 yield aborted_bisect_test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698