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

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

Issue 2239023004: [Android] Surface --write-buildbot-json option of test_runner.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_android/example.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_android/api.py
diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py
index 7ac3aec4a81374503cfeb37156c3a018483c24c1..88c1483c4990ae9d65cfb675cdab9c0e00392a26 100644
--- a/scripts/slave/recipe_modules/chromium_android/api.py
+++ b/scripts/slave/recipe_modules/chromium_android/api.py
@@ -678,6 +678,7 @@ class AndroidApi(recipe_api.RecipeApi):
max_battery_temp=None,
known_devices_file=None,
enable_platform_mode=False,
+ write_buildbot_json=False,
**kwargs):
args = [
'perf',
@@ -696,6 +697,8 @@ class AndroidApi(recipe_api.RecipeApi):
args.extend(['--known-devices-file', known_devices_file])
if enable_platform_mode:
args.extend(['--enable-platform-mode'])
+ if write_buildbot_json:
+ args.extend(['--write-buildbot-json'])
self.test_runner(
'Sharded Perf Tests',
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_android/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698