| Index: scripts/slave/recipes/chromium.py
|
| diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
|
| index 317888971e7fb32887f766c45f172cb59145bfbc..07075b5cc6e45ca99e98a07450138e8b4d714b7c 100644
|
| --- a/scripts/slave/recipes/chromium.py
|
| +++ b/scripts/slave/recipes/chromium.py
|
| @@ -639,6 +639,37 @@ def GenTests(api):
|
| )
|
|
|
| yield (
|
| + api.test('dynamic_instrumentation_nodefault_build') +
|
| + api.properties.generic(mastername='chromium.linux',
|
| + buildername='Android Builder') +
|
| + api.override_step_data('read test spec', api.json.output({
|
| + 'Android Tests': {
|
| + 'instrumentation_tests': [
|
| + {
|
| + 'test': 'blimp_test_apk',
|
| + }
|
| + ],
|
| + },
|
| + }))
|
| + )
|
| +
|
| + yield (
|
| + api.test('dynamic_instrumentation_nodefault_test') +
|
| + api.properties.generic(mastername='chromium.linux',
|
| + buildername='Android Tests',
|
| + parent_buildername='Android Builder') +
|
| + api.override_step_data('read test spec', api.json.output({
|
| + 'Android Tests': {
|
| + 'instrumentation_tests': [
|
| + {
|
| + 'test': 'blimp_test_apk',
|
| + }
|
| + ],
|
| + },
|
| + }))
|
| + )
|
| +
|
| + yield (
|
| api.test('dynamic_swarmed_instrumentation_test') +
|
| api.properties.generic(mastername='chromium.linux',
|
| buildername='Android Tests',
|
|
|