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

Unified 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 side-by-side diff with in-line comments
Download patch
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',

Powered by Google App Engine
This is Rietveld 408576698