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

Unified Diff: scripts/slave/recipe_modules/chromium_android/example.py

Issue 2252553002: Add cs-base-url, store_tombstones, master_name for android inst tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: added --store-tombstones argument 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium_android/example.py
diff --git a/scripts/slave/recipe_modules/chromium_android/example.py b/scripts/slave/recipe_modules/chromium_android/example.py
index 72dcb3896e066c5da2d2767127057c5dfd8e1a95..4db3f64457f1185182b7396c0cbcb17a7f6cc8f7 100644
--- a/scripts/slave/recipe_modules/chromium_android/example.py
+++ b/scripts/slave/recipe_modules/chromium_android/example.py
@@ -98,6 +98,8 @@ BUILDERS = freeze({
},
'result_details': {
'result_details': True,
+ 'cs_base_url': 'cs_base_url',
+ 'store_tombstones': True,
},
'enable_platform_mode': {
'perf_config': 'sharded_perf_tests.json',
@@ -201,7 +203,6 @@ def RunSteps(api, buildername):
timestamp_as_point_id=config.get('timestamp_as_point_id', False))
except api.step.StepFailure as f:
failure = f
-
api.chromium_android.run_instrumentation_suite(
name='AndroidWebViewTest',
apk_under_test=api.chromium_android.apk_path('AndroidWebView.apk'),
@@ -217,7 +218,9 @@ def RunSteps(api, buildername):
additional_apks=['Additional.apk'],
device_flags=config.get('device_flags'),
json_results_file=config.get('json_results_file'),
- result_details=config.get('result_details'))
+ result_details=config.get('result_details'),
+ cs_base_url=config.get('cs_base_url'),
+ store_tombstones=config.get('store_tombstones'))
api.chromium_android.run_test_suite(
'unittests',
isolate_file_path=api.path['checkout'].join('some_file.isolate'),

Powered by Google App Engine
This is Rietveld 408576698