Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: scripts/slave/recipes/chromium.py

Issue 2230043002: Make test-results upload URL configurable. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
1145 'shard_index': 0, 1145 'shard_index': 0,
1146 'total_shards': 2 1146 'total_shards': 2
1147 }, 1147 },
1148 ], 1148 ],
1149 }, 1149 },
1150 }) 1150 })
1151 ) 1151 )
1152 ) 1152 )
1153 1153
1154 yield ( 1154 yield (
1155 api.test('dynamic_gtest_android') +
1156 api.properties.generic(mastername='chromium.android',
1157 buildername='Lollipop Phone Tester',
1158 parent_buildername='Android arm Builder (dbg)') +
1159 api.override_step_data(
1160 'read test spec (chromium.android.json)',
1161 api.json.output({
1162 'Lollipop Phone Tester': {
1163 'gtest_tests': [
1164 {
1165 'test': 'base_unittests',
1166 }
1167 ],
1168 },
1169 }))
1170 )
1171
1172 yield (
1155 api.test('dynamic_gtest_asan_android') + 1173 api.test('dynamic_gtest_asan_android') +
1156 api.properties.generic(mastername='chromium.fyi', 1174 api.properties.generic(mastername='chromium.fyi',
1157 buildername='ClangToTAndroidASan') + 1175 buildername='ClangToTAndroidASan') +
1158 api.override_step_data( 1176 api.override_step_data(
1159 'read test spec (chromium.fyi.json)', 1177 'read test spec (chromium.fyi.json)',
1160 api.json.output({ 1178 api.json.output({
1161 'ClangToTAndroidASan': { 1179 'ClangToTAndroidASan': {
1162 'gtest_tests': [ 1180 'gtest_tests': [
1163 { 1181 {
1164 'args': ['--tool=asan'], 1182 'args': ['--tool=asan'],
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 yield ( 1469 yield (
1452 api.test('ensure_goma_fail') + 1470 api.test('ensure_goma_fail') +
1453 api.properties( 1471 api.properties(
1454 mastername='chromium.fyi', 1472 mastername='chromium.fyi',
1455 buildername='Linux remote_run Builder', 1473 buildername='Linux remote_run Builder',
1456 slavename='build1-a1', 1474 slavename='build1-a1',
1457 buildnumber='77457', 1475 buildnumber='77457',
1458 path_config='kitchen') + 1476 path_config='kitchen') +
1459 api.override_step_data('ensure_goma.ensure_installed', retcode=1) 1477 api.override_step_data('ensure_goma.ensure_installed', retcode=1)
1460 ) 1478 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698