OLD | NEW |
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 'bot_update', | 6 'bot_update', |
7 'chromium', | 7 'chromium', |
8 'chromium_tests', | 8 'chromium_tests', |
9 'gclient', | 9 'gclient', |
10 'isolate', | 10 'isolate', |
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1545 }, | 1545 }, |
1546 ], | 1546 ], |
1547 }) | 1547 }) |
1548 ) + | 1548 ) + |
1549 api.override_step_data( | 1549 api.override_step_data( |
1550 'analyze', | 1550 'analyze', |
1551 api.json.output({'status': 'Found dependency', | 1551 api.json.output({'status': 'Found dependency', |
1552 'targets': ['browser_tests', 'base_unittests'], | 1552 'targets': ['browser_tests', 'base_unittests'], |
1553 'build_targets': ['base_unittests']})) | 1553 'build_targets': ['base_unittests']})) |
1554 ) | 1554 ) |
| 1555 |
| 1556 # Test what happens if a telemetry test fails (we're testing that the |
| 1557 # test names that need to be retried are in the 'foo.bar' format rather |
| 1558 # than 'foo/bar'). |
| 1559 yield ( |
| 1560 api.test('telemetry_failures') + |
| 1561 props(buildername='linux_chromium_rel') + |
| 1562 api.platform.name('linux') + |
| 1563 api.override_step_data('telemetry_unittests (with patch)', |
| 1564 api.json.canned_test_output(passing=False, minimal=True, |
| 1565 path_separator='.')) + |
| 1566 api.override_step_data('telemetry_unittests (without patch)', |
| 1567 api.json.canned_test_output(passing=False, minimal=True, |
| 1568 path_separator='.')) |
| 1569 ) |
OLD | NEW |