diff options
author | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-04 18:02:30 +0000 |
---|---|---|
committer | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-04 18:02:30 +0000 |
commit | 9e91883a9f7aa6915b92d567edcc60e2473b7064 (patch) | |
tree | 9818f371f44c70dd1d5e4771fdd13c6aa108950e | |
parent | ba0fea42b1b515b3ff79169148a8f5240a0475b8 (diff) | |
download | chromium_src-9e91883a9f7aa6915b92d567edcc60e2473b7064.zip chromium_src-9e91883a9f7aa6915b92d567edcc60e2473b7064.tar.gz chromium_src-9e91883a9f7aa6915b92d567edcc60e2473b7064.tar.bz2 |
Add adb start-server on android buildbots
We think adb devices isn't giving full list when
adb devices is called and daemon is not running.
Manually start the adb daemon before the download/build steps.
TBR=yaron
BUG=
Review URL: https://codereview.chromium.org/11038029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160164 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/android/buildbot/buildbot_functions.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/android/buildbot/buildbot_functions.sh b/build/android/buildbot/buildbot_functions.sh index 4d729f8..d9e8752 100755 --- a/build/android/buildbot/buildbot_functions.sh +++ b/build/android/buildbot/buildbot_functions.sh @@ -69,6 +69,7 @@ function bb_baseline_setup { export GOMA_DIR=/b/build/goma . build/android/envsetup.sh adb kill-server + adb start-server } function bb_compile_setup { |