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 3826015: Propagate board correctly for latest image and remote_tests. (Closed) Base URL: http://git.chromium.org/git/crosutils.git
Patch Set: 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 | no next file » | 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 9e3bba7170c59ba62f03e2e46fd6d63c3c28a633..8ed9497ff913c61eaa09944f2c4de5331b704a57 100755
--- a/bin/cros_run_vm_test
+++ b/bin/cros_run_vm_test
@@ -12,6 +12,10 @@
MAX_RETRIES=3
+get_default_board
+
+DEFINE_string board "$DEFAULT_BOARD" \
+ "The board for which you built autotest."
DEFINE_string image_path "" "Full path of the VM image"
DEFINE_string test_case "" "Name of the test case to run"
@@ -23,7 +27,8 @@ eval set -- "${FLAGS_ARGV}"
# Use latest if not specified.
if [ -z "${FLAGS_image_path}" ]; then
- LATEST_IMAGE="$(${SCRIPTS_DIR}/get_latest_image.sh)/${DEFAULT_QEMU_IMAGE}"
+ LATEST_IMAGE="$(${SCRIPTS_DIR}/get_latest_image.sh \
+ --board=${FLAGS_board})/${DEFAULT_QEMU_IMAGE}"
info "Using latest vm image ${LATEST_IMAGE}"
FLAGS_image_path=${LATEST_IMAGE}
fi
@@ -37,6 +42,7 @@ start_kvm "${FLAGS_image_path}"
info "Checking for ssh access to virtual machine."
retry_until_ssh ${MAX_RETRIES}
"$(dirname $0)"/../run_remote_tests.sh \
+ --board=${FLAGS_board} \
--ssh_port=${FLAGS_ssh_port} \
--remote=127.0.0.1 \
"${FLAGS_test_case}"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698