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

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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 'shard_index': 0, 1041 'shard_index': 0,
1042 'total_shards': 2 1042 'total_shards': 2
1043 }, 1043 },
1044 ], 1044 ],
1045 }, 1045 },
1046 }) 1046 })
1047 ) 1047 )
1048 ) 1048 )
1049 1049
1050 yield ( 1050 yield (
1051 api.test('dynamic_gtest_android') +
1052 api.properties.generic(mastername='chromium.android',
1053 buildername='Lollipop Phone Tester',
1054 parent_buildername='Android arm Builder (dbg)') +
1055 api.override_step_data(
1056 'read test spec (chromium.android.json)',
1057 api.json.output({
1058 'Lollipop Phone Tester': {
1059 'gtest_tests': [
1060 {
1061 'test': 'base_unittests',
1062 }
1063 ],
1064 },
1065 }))
1066 )
1067
1068 yield (
1051 api.test('dynamic_gtest_asan_android') + 1069 api.test('dynamic_gtest_asan_android') +
1052 api.properties.generic(mastername='chromium.fyi', 1070 api.properties.generic(mastername='chromium.fyi',
1053 buildername='ClangToTAndroidASan') + 1071 buildername='ClangToTAndroidASan') +
1054 api.override_step_data( 1072 api.override_step_data(
1055 'read test spec (chromium.fyi.json)', 1073 'read test spec (chromium.fyi.json)',
1056 api.json.output({ 1074 api.json.output({
1057 'ClangToTAndroidASan': { 1075 'ClangToTAndroidASan': {
1058 'gtest_tests': [ 1076 'gtest_tests': [
1059 { 1077 {
1060 'args': ['--tool=asan'], 1078 'args': ['--tool=asan'],
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 yield ( 1365 yield (
1348 api.test('ensure_goma_fail') + 1366 api.test('ensure_goma_fail') +
1349 api.properties( 1367 api.properties(
1350 mastername='chromium.fyi', 1368 mastername='chromium.fyi',
1351 buildername='Linux remote_run Builder', 1369 buildername='Linux remote_run Builder',
1352 slavename='build1-a1', 1370 slavename='build1-a1',
1353 buildnumber='77457', 1371 buildnumber='77457',
1354 path_config='kitchen') + 1372 path_config='kitchen') +
1355 api.override_step_data('ensure_goma.ensure_installed', retcode=1) 1373 api.override_step_data('ensure_goma.ensure_installed', retcode=1)
1356 ) 1374 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698