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

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 18652008: Deploy adb reconnect on disconnect daemon on WebKit Android bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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 | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_device_steps.py
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py
index 720c69f30bde5182cc3124ae718b0333413596c3..998a62d39d8fc342d2c38255b0d6ae58b3274dc2 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -251,7 +251,11 @@ def ProvisionDevices(options):
buildbot_report.PrintNamedStep('provision_devices')
if options.reboot:
RebootDevices()
- RunCmd(['build/android/provision_devices.py', '-t', options.target])
+ if options.auto_reconnect:
Isaac (away) 2013/07/04 01:57:04 provision_cmd = [...] if options.auto_reconnect:
navabi1 2013/07/08 17:17:27 Done.
+ RunCmd(['build/android/provision_devices.py', '-t', options.target,
+ '--auto-reconnect'])
+ else:
+ RunCmd(['build/android/provision_devices.py', '-t', options.target])
def DeviceStatusCheck(_):
« no previous file with comments | « no previous file | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698