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

Unified Diff: build/android/buildbot/buildbot_functions.sh

Issue 11857014: Move android reboot step into python (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed multiprocessing comment Created 7 years, 11 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 | « build/android/buildbot/bb_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/buildbot_functions.sh
diff --git a/build/android/buildbot/buildbot_functions.sh b/build/android/buildbot/buildbot_functions.sh
index b159914bce181fcc7ec09cc7a7c02fc9a20170f6..3a4ca9a7c24316035037e0a85e515ad0c1665308 100755
--- a/build/android/buildbot/buildbot_functions.sh
+++ b/build/android/buildbot/buildbot_functions.sh
@@ -259,26 +259,6 @@ function bb_extract_build {
)
}
-# Reboot all phones and wait for them to start back up
-# Does not break build if a phone fails to restart
-function bb_reboot_phones {
- echo "@@@BUILD_STEP Rebooting phones@@@"
- # Restart adb to work around bugs, sleep to wait for usb discovery.
- adb kill-server
- adb start-server
- sleep .5
-
- (
- set +e
- cd $CHROME_SRC/build/android/pylib;
- for DEVICE in $(adb_get_devices); do
- python -c "import android_commands;\
- android_commands.AndroidCommands(device='$DEVICE').Reboot(True)" &
- done
- wait
- )
-}
-
# Runs the license checker for the WebView build.
function bb_check_webview_licenses {
echo "@@@BUILD_STEP Check licenses for WebView@@@"
« no previous file with comments | « build/android/buildbot/bb_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698