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', |
32 'chromium', | 33 'chromium', |
33 'chromium_tests', | 34 'chromium_tests', |
34 'depot_tools/gclient', | 35 'depot_tools/gclient', |
35 'recipe_engine/json', | 36 'recipe_engine/json', |
36 'recipe_engine/path', | 37 'recipe_engine/path', |
37 'recipe_engine/platform', | 38 'recipe_engine/platform', |
38 'recipe_engine/properties', | 39 'recipe_engine/properties', |
39 'recipe_engine/python', | 40 'recipe_engine/python', |
40 'recipe_engine/raw_io', | 41 'recipe_engine/raw_io', |
41 'recipe_engine/step', | 42 'recipe_engine/step', |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 # and compare the lists of failing tests). | 215 # and compare the lists of failing tests). |
215 yield ( | 216 yield ( |
216 api.test('too_many_failures_for_retcode') + | 217 api.test('too_many_failures_for_retcode') + |
217 properties('client.v8.fyi', 'V8-Blink Linux 64') + | 218 properties('client.v8.fyi', 'V8-Blink Linux 64') + |
218 api.override_step_data(with_patch, | 219 api.override_step_data(with_patch, |
219 canned_test(passing=False, | 220 canned_test(passing=False, |
220 num_additional_failures=125)) + | 221 num_additional_failures=125)) + |
221 api.override_step_data(without_patch, | 222 api.override_step_data(without_patch, |
222 canned_test(passing=True, minimal=True)) | 223 canned_test(passing=True, minimal=True)) |
223 ) | 224 ) |
OLD | NEW |