| 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 'bisect_tester', | 7 'bisect_tester', |
| 8 'depot_tools/bot_update', | 8 'depot_tools/bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 'gtest_tests': [ | 1148 'gtest_tests': [ |
| 1149 'browser_tests', | 1149 'browser_tests', |
| 1150 ], | 1150 ], |
| 1151 }, | 1151 }, |
| 1152 }) | 1152 }) |
| 1153 ) | 1153 ) |
| 1154 ) | 1154 ) |
| 1155 | 1155 |
| 1156 yield ( | 1156 yield ( |
| 1157 api.test('tsan') + | 1157 api.test('tsan') + |
| 1158 api.properties.generic(mastername='chromium.memory.fyi', | 1158 api.properties.generic(mastername='chromium.memory.full', |
| 1159 buildername='Linux TSan Tests', | 1159 buildername='Linux TSan Tests', |
| 1160 parent_buildername='Chromium Linux TSan Builder') + | 1160 parent_buildername='Chromium Linux TSan Builder') + |
| 1161 api.platform('linux', 64) + | 1161 api.platform('linux', 64) + |
| 1162 api.override_step_data( | 1162 api.override_step_data( |
| 1163 'read test spec (chromium.memory.fyi.json)', | 1163 'read test spec (chromium.memory.full.json)', |
| 1164 api.json.output({ | 1164 api.json.output({ |
| 1165 'Linux TSan Tests': { | 1165 'Linux TSan Tests': { |
| 1166 'compile_targets': ['base_unittests'], | 1166 'compile_targets': ['base_unittests'], |
| 1167 'gtest_tests': ['base_unittests'], | 1167 'gtest_tests': ['base_unittests'], |
| 1168 }, | 1168 }, |
| 1169 }) | 1169 }) |
| 1170 ) | 1170 ) |
| 1171 ) | 1171 ) |
| 1172 | 1172 |
| 1173 yield ( | 1173 yield ( |
| 1174 api.test('msan') + | 1174 api.test('msan') + |
| 1175 api.properties.generic(mastername='chromium.memory.fyi', | 1175 api.properties.generic(mastername='chromium.memory.full', |
| 1176 buildername='Linux MSan Tests', | 1176 buildername='Linux MSan Tests', |
| 1177 parent_buildername='Chromium Linux MSan Builder') + | 1177 parent_buildername='Chromium Linux MSan Builder') + |
| 1178 api.platform('linux', 64) + | 1178 api.platform('linux', 64) + |
| 1179 api.override_step_data( | 1179 api.override_step_data( |
| 1180 'read test spec (chromium.memory.fyi.json)', | 1180 'read test spec (chromium.memory.full.json)', |
| 1181 api.json.output({ | 1181 api.json.output({ |
| 1182 'Linux MSan Tests': { | 1182 'Linux MSan Tests': { |
| 1183 'compile_targets': ['base_unittests'], | 1183 'compile_targets': ['base_unittests'], |
| 1184 'gtest_tests': ['base_unittests'], | 1184 'gtest_tests': ['base_unittests'], |
| 1185 }, | 1185 }, |
| 1186 }) | 1186 }) |
| 1187 ) | 1187 ) |
| 1188 ) | 1188 ) |
| 1189 | 1189 |
| 1190 yield ( | 1190 yield ( |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 yield ( | 1375 yield ( |
| 1376 api.test('ensure_goma_fail') + | 1376 api.test('ensure_goma_fail') + |
| 1377 api.properties( | 1377 api.properties( |
| 1378 mastername='chromium.fyi', | 1378 mastername='chromium.fyi', |
| 1379 buildername='Linux remote_run Builder', | 1379 buildername='Linux remote_run Builder', |
| 1380 slavename='build1-a1', | 1380 slavename='build1-a1', |
| 1381 buildnumber='77457', | 1381 buildnumber='77457', |
| 1382 path_config='kitchen') + | 1382 path_config='kitchen') + |
| 1383 api.override_step_data('ensure_goma.ensure_installed', retcode=1) | 1383 api.override_step_data('ensure_goma.ensure_installed', retcode=1) |
| 1384 ) | 1384 ) |
| OLD | NEW |