OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 """ | 5 """ |
6 This recipe can be used by components like v8 to verify blink tests with a | 6 This recipe can be used by components like v8 to verify blink tests with a |
7 low false positive rate. Similar to a trybot, this recipe compares test | 7 low false positive rate. Similar to a trybot, this recipe compares test |
8 failures from a build with a current component revision with test failures | 8 failures from a build with a current component revision with test failures |
9 from a build with a pinned component revision. | 9 from a build with a pinned component revision. |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 present in the pinned revision | 22 present in the pinned revision |
23 | 23 |
24 Revision Y will be the revision property as provided by buildbot or HEAD (i.e. | 24 Revision Y will be the revision property as provided by buildbot or HEAD (i.e. |
25 in a forced build with no revision provided). | 25 in a forced build with no revision provided). |
26 """ | 26 """ |
27 | 27 |
28 from recipe_engine.types import freeze | 28 from recipe_engine.types import freeze |
29 | 29 |
30 DEPS = [ | 30 DEPS = [ |
31 'depot_tools/bot_update', | 31 'depot_tools/bot_update', |
32 'depot_tools/infra_paths', | |
33 'chromium', | 32 'chromium', |
34 'chromium_tests', | 33 'chromium_tests', |
35 'depot_tools/gclient', | 34 'depot_tools/gclient', |
36 'recipe_engine/json', | 35 'recipe_engine/json', |
37 'recipe_engine/path', | 36 'recipe_engine/path', |
38 'recipe_engine/platform', | 37 'recipe_engine/platform', |
39 'recipe_engine/properties', | 38 'recipe_engine/properties', |
40 'recipe_engine/python', | 39 'recipe_engine/python', |
41 'recipe_engine/raw_io', | 40 'recipe_engine/raw_io', |
42 'recipe_engine/step', | 41 'recipe_engine/step', |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 # and compare the lists of failing tests). | 214 # and compare the lists of failing tests). |
216 yield ( | 215 yield ( |
217 api.test('too_many_failures_for_retcode') + | 216 api.test('too_many_failures_for_retcode') + |
218 properties('client.v8.fyi', 'V8-Blink Linux 64') + | 217 properties('client.v8.fyi', 'V8-Blink Linux 64') + |
219 api.override_step_data(with_patch, | 218 api.override_step_data(with_patch, |
220 canned_test(passing=False, | 219 canned_test(passing=False, |
221 num_additional_failures=125)) + | 220 num_additional_failures=125)) + |
222 api.override_step_data(without_patch, | 221 api.override_step_data(without_patch, |
223 canned_test(passing=True, minimal=True)) | 222 canned_test(passing=True, minimal=True)) |
224 ) | 223 ) |
OLD | NEW |