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

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

Issue 1994703002: [Android] Default to test name as compile target for instrumentation tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 7 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 'amp', 7 'amp',
8 'bisect_tester', 8 'bisect_tester',
9 'depot_tools/bot_update', 9 'depot_tools/bot_update',
10 'chromium', 10 'chromium',
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 'another_apk', 632 'another_apk',
633 'omg_so_many_apks', 633 'omg_so_many_apks',
634 ] 634 ]
635 } 635 }
636 ], 636 ],
637 }, 637 },
638 })) 638 }))
639 ) 639 )
640 640
641 yield ( 641 yield (
642 api.test('dynamic_instrumentation_nodefault_build') +
643 api.properties.generic(mastername='chromium.linux',
644 buildername='Android Builder') +
645 api.override_step_data('read test spec', api.json.output({
646 'Android Tests': {
647 'instrumentation_tests': [
648 {
649 'test': 'blimp_test_apk',
650 }
651 ],
652 },
653 }))
654 )
655
656 yield (
657 api.test('dynamic_instrumentation_nodefault_test') +
658 api.properties.generic(mastername='chromium.linux',
659 buildername='Android Tests',
660 parent_buildername='Android Builder') +
661 api.override_step_data('read test spec', api.json.output({
662 'Android Tests': {
663 'instrumentation_tests': [
664 {
665 'test': 'blimp_test_apk',
666 }
667 ],
668 },
669 }))
670 )
671
672 yield (
642 api.test('dynamic_swarmed_instrumentation_test') + 673 api.test('dynamic_swarmed_instrumentation_test') +
643 api.properties.generic(mastername='chromium.linux', 674 api.properties.generic(mastername='chromium.linux',
644 buildername='Android Tests', 675 buildername='Android Tests',
645 parent_buildername='Android Builder') + 676 parent_buildername='Android Builder') +
646 api.override_step_data('read test spec', api.json.output({ 677 api.override_step_data('read test spec', api.json.output({
647 'Android Tests': { 678 'Android Tests': {
648 'instrumentation_tests': [ 679 'instrumentation_tests': [
649 { 680 {
650 'test': 'chrome_public_test', 681 'test': 'chrome_public_test',
651 'swarming': { 682 'swarming': {
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 1081
1051 yield ( 1082 yield (
1052 api.test('kitchen_path_config') + 1083 api.test('kitchen_path_config') +
1053 api.properties( 1084 api.properties(
1054 mastername='chromium.fyi', 1085 mastername='chromium.fyi',
1055 buildername='Linux Kitchen (kitchen_run)', 1086 buildername='Linux Kitchen (kitchen_run)',
1056 slavename='build1-a1', 1087 slavename='build1-a1',
1057 buildnumber='77457', 1088 buildnumber='77457',
1058 path_config='kitchen') 1089 path_config='kitchen')
1059 ) 1090 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698