| 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 'adb', | 6 'adb', |
| 7 'amp', | 7 'amp', |
| 8 'bisect_tester', | 8 'bisect_tester', |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'chromium', | 10 'chromium', |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 'junit_tests': [ | 752 'junit_tests': [ |
| 753 { | 753 { |
| 754 'test': 'base_junit_tests', | 754 'test': 'base_junit_tests', |
| 755 }, | 755 }, |
| 756 ], | 756 ], |
| 757 }, | 757 }, |
| 758 })) | 758 })) |
| 759 ) | 759 ) |
| 760 | 760 |
| 761 yield ( | 761 yield ( |
| 762 api.test('goma_with_diagnose_goma_failure') + |
| 763 api.properties.generic(mastername='chromium.fyi', |
| 764 buildername='CrWinGoma', |
| 765 build_data_dir='E:\\chrome-infra-logs') + |
| 766 api.step_data('diagnose_goma', retcode=1) |
| 767 ) |
| 768 |
| 769 yield ( |
| 762 api.test('dynamic_gtest_on_builder') + | 770 api.test('dynamic_gtest_on_builder') + |
| 763 api.properties.generic(mastername='chromium.linux', | 771 api.properties.generic(mastername='chromium.linux', |
| 764 buildername='Linux Builder') + | 772 buildername='Linux Builder') + |
| 765 api.platform('linux', 64) + | 773 api.platform('linux', 64) + |
| 766 api.override_step_data('read test spec', api.json.output({ | 774 api.override_step_data('read test spec', api.json.output({ |
| 767 'Linux Tests': { | 775 'Linux Tests': { |
| 768 'gtest_tests': [ | 776 'gtest_tests': [ |
| 769 'base_unittests', | 777 'base_unittests', |
| 770 {'test': 'browser_tests', 'shard_index': 0, 'total_shards': 2}, | 778 {'test': 'browser_tests', 'shard_index': 0, 'total_shards': 2}, |
| 771 ], | 779 ], |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 | 1089 |
| 1082 yield ( | 1090 yield ( |
| 1083 api.test('kitchen_path_config') + | 1091 api.test('kitchen_path_config') + |
| 1084 api.properties( | 1092 api.properties( |
| 1085 mastername='chromium.fyi', | 1093 mastername='chromium.fyi', |
| 1086 buildername='Linux Kitchen (kitchen_run)', | 1094 buildername='Linux Kitchen (kitchen_run)', |
| 1087 slavename='build1-a1', | 1095 slavename='build1-a1', |
| 1088 buildnumber='77457', | 1096 buildnumber='77457', |
| 1089 path_config='kitchen') | 1097 path_config='kitchen') |
| 1090 ) | 1098 ) |
| OLD | NEW |