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

Unified Diff: build/android/run_tests.py

Issue 10692132: fix test broken issue when using --use-emulator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add function WaitForSystemBootCompleted and Start/Kill/RestartAdbServer Created 8 years, 5 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: build/android/run_tests.py
diff --git a/build/android/run_tests.py b/build/android/run_tests.py
index dfa66acad16661b56e10816905df0e48b9f911b7..be6ef8872f29999b2d35a8c8a5c7a6f5f1e9f75b 100755
--- a/build/android/run_tests.py
+++ b/build/android/run_tests.py
@@ -319,8 +319,8 @@ def _RunATestSuite(options):
t.Stop()
buildbot_emulators.append(buildbot_emulator)
attached_devices.append(buildbot_emulator.device)
- # Wait for all emulators to become available.
- map(lambda buildbot_emulator:buildbot_emulator.ConfirmLaunch(),
+ # Wait for all emulators to boot completed.
+ map(lambda buildbot_emulator:buildbot_emulator.ConfirmLaunch(True),
buildbot_emulators)
elif options.test_device:
attached_devices = [options.test_device]

Powered by Google App Engine
This is Rietveld 408576698