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

Unified Diff: bin/cros_run_vm_test

Issue 3598019: Add ability to vm library to retry until we can ssh into it. (Closed) Base URL: http://git.chromium.org/git/crosutils.git
Patch Set: Upload before push Created 10 years, 2 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 | lib/cros_vm_lib.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cros_run_vm_test
diff --git a/bin/cros_run_vm_test b/bin/cros_run_vm_test
index ee86879c7820c8c0dadb664cde2b77b7c0a688aa..9e3bba7170c59ba62f03e2e46fd6d63c3c28a633 100755
--- a/bin/cros_run_vm_test
+++ b/bin/cros_run_vm_test
@@ -10,6 +10,8 @@
. "$(dirname $0)/../lib/cros_vm_lib.sh"
. "$(dirname "$0")/../lib/cros_vm_constants.sh"
+MAX_RETRIES=3
+
DEFINE_string image_path "" "Full path of the VM image"
DEFINE_string test_case "" "Name of the test case to run"
@@ -32,6 +34,8 @@ fi
trap stop_kvm EXIT
start_kvm "${FLAGS_image_path}"
+info "Checking for ssh access to virtual machine."
+retry_until_ssh ${MAX_RETRIES}
"$(dirname $0)"/../run_remote_tests.sh \
--ssh_port=${FLAGS_ssh_port} \
--remote=127.0.0.1 \
« no previous file with comments | « no previous file | lib/cros_vm_lib.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698