Lukasz Galka 3d738d4569 test/vhost: move fiotest functions to common directory
Move files from test/vhost/fiotest to test/vhost/common.
Scripts and functions from fio tests will be re-used in
any new test scripts.

Change-Id: I2423d636d41dcb2b2af12987769961607e969392
Signed-off-by: Lukasz Galka <lukaszx.galka@intel.com>
Reviewed-on: https://review.gerrithub.io/372545
Reviewed-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Pawel Kaminski <pawelx.kaminski@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-09-05 13:54:47 -04:00

60 lines
1.3 KiB
Bash
Executable File

#!/usr/bin/env bash
BASE_DIR=$(readlink -f $(dirname $0))
[[ -z "$COMMON_DIR" ]] && COMMON_DIR="$(cd $BASE_DIR/../common && pwd)"
[[ -z "$TEST_DIR" ]] && TEST_DIR="$(cd $BASE_DIR/../../../../ && pwd)"
function usage()
{
[[ ! -z $2 ]] && ( echo "$2"; echo ""; )
echo "Shortcut script for connecting to or executing command on selected VM"
echo "Usage: $(basename $1) [OPTIONS] VM_NUMBER"
echo
echo "-h, --help print help and exit"
echo " --work-dir=WORK_DIR Where to find build file. Must exist. [default: $TEST_DIR]"
echo "-w Don't wait for vm to boot"
echo "-x set -x for script debug"
exit 0
}
boot_wait=true
while getopts 'xwh-:' optchar; do
case "$optchar" in
-)
case "$OPTARG" in
help) usage $0 ;;
work-dir=*) TEST_DIR="${OPTARG#*=}" ;;
*) usage $0 "Invalid argument '$OPTARG'" ;;
esac ;;
h) usage $0 ;;
w) boot_wait=false ;;
x) set -x ;;
*) usage $0 "Invalid argument '$OPTARG'" ;;
esac
done
. $COMMON_DIR/common.sh
shift $((OPTIND-1))
vm_num="$1"
shift
if ! vm_num_is_valid $vm_num; then
usage $0 "Invalid VM num $vm_num"
exit 1
fi
if $boot_wait; then
while ! vm_os_booted $vm_num; do
if ! vm_is_running $vm_num; then
echo "ERROR: VM$vm_num is not running"
exit 1
fi
echo "INFO: waiting for VM$vm_num to boot"
sleep 1
done
fi
vm_ssh $vm_num "$@"