Runs our BVT suite in a VM

Change-Id: I758c93596d5cbdd6b52b9acc82f4d6e19a326c9f

BUG=5518
TEST=Tested using all the options. All tests listed in the file pass.

Review URL: http://codereview.chromium.org/3107039
This commit is contained in:
Ryan Cairns 2010-08-30 17:03:50 -07:00
parent b1e772a180
commit 1703423a77
2 changed files with 59 additions and 1 deletions

58
bin/cros_run_vm_test Executable file
View File

@ -0,0 +1,58 @@
#!/bin/bash
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# Runs a given test case under a VM.
. "$(dirname $0)/../common.sh"
DEFINE_string image_path "" "Full path of the VM image"
DEFINE_boolean no_graphics ${FLAGS_FALSE} "Runs the KVM instance silently"
DEFINE_integer ssh_port 9222 "Port to tunnel ssh traffic over"
DEFINE_string test_case "" "Name of the test case to run"
set -e
KVM_PID_FILE=/tmp/kvm.$$.pid
# TODO(rtc): These flags assume that we'll be using KVM on Lucid and won't work
# on Hardy.
function start_kvm {
echo "Starting the KVM instance"
local nographics=""
if [ ${FLAGS_no_graphics} -eq ${FLAGS_TRUE} ]; then
nographics="-nographic"
fi
sudo kvm -m 1024 \
-vga std \
-pidfile "${KVM_PID_FILE}" \
-daemonize \
-net nic \
${nographics} \
-net user,hostfwd=tcp::${FLAGS_ssh_port}-:22 \
-hda "${FLAGS_image_path}"
}
function stop_kvm {
echo "Stopping the KVM instance"
local pid=$(sudo cat "${KVM_PID_FILE}")
echo "Killing ${pid}"
sudo kill ${pid}
sudo rm "${KVM_PID_FILE}"
}
# Parse command line
FLAGS "$@" || exit 1
eval set -- "${FLAGS_ARGV}"
[ -n "${FLAGS_image_path}" ] || die "You must specify a path to an image"
[ -n "${FLAGS_test_case}" ] || die "You must specify a test case"
trap stop_kvm EXIT
start_kvm
"$(dirname $0)"/../run_remote_tests.sh \
--ssh_port=${FLAGS_ssh_port} \
--remote="${HOSTNAME}" \
"${FLAGS_test_case}"

View File

@ -286,7 +286,7 @@ function main() {
echo ""
echo_color "yellow" ">>> Test results:"
$(dirname "$0")/generate_test_report "${TMP}" --strip="${TMP}/"
./generate_test_report "${TMP}" --strip="${TMP}/"
}
main $@