test/vhost: remove some ancient artifacts

run_vhost.sh - gdb/gdbserver support removed long time ago but not
removed from help message.
migration.sh - remove "copy-paste" help message garbage.

Change-Id: Ie867e3fa222894886db45f3f6252a62ef3ae354c
Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Reviewed-on: https://review.gerrithub.io/398752
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
This commit is contained in:
Pawel Wodkowski 2018-02-01 22:43:57 +01:00 committed by Jim Harris
parent 42d3ea49d4
commit 758d438bf5
2 changed files with 0 additions and 11 deletions

View File

@ -13,8 +13,6 @@ function usage()
echo "Usage: $(basename $1) [-x] [-h|--help] [--clean-build] [--work-dir=PATH]"
echo "-h, --help print help and exit"
echo "-x Set -x for script debug"
echo " --gdb Run app under gdb"
echo " --gdbserver Run app under gdb-server"
echo " --work-dir=PATH Where to find source/project. [default=$TEST_DIR]"
echo " --conf-dir=PATH Path to directory with configuration for vhost"
echo " --vhost-num=NUM Optional: vhost instance NUM to start. Default: 0"
@ -28,9 +26,6 @@ while getopts 'xh-:' optchar; do
-)
case "$OPTARG" in
help) usage $0 ;;
gdb) VHOST_GDB="gdb --args" ;;
gdbserver) VHOST_GDB="gdbserver 127.0.0.1:12345"
;;
work-dir=*) TEST_DIR="${OPTARG#*=}" ;;
conf-dir=*) CONF_DIR="${OPTARG#*=}" ;;
vhost-num=*) vhost_num="${OPTARG}" ;;

View File

@ -21,12 +21,6 @@ function usage()
echo " --work-dir=WORK_DIR Where to find build file. Must exist. [default: $TEST_DIR]"
echo " --os ARGS VM configuration. This parameter might be used more than once:"
echo " --fio-bin=FIO Use specific fio binary (will be uploaded to VM)"
echo " num=NUM - VM number"
echo " os=OS - VM os disk path"
echo " bdevs=DISKS - VM test disks/devices path separated by ':'"
echo " incoming - set this VM to wait for incoming migration"
echo " If test-type=spdk_vhost_blk then each disk size is 20G e.g."
echo " --vm num=X,os=os.qcow,bdevs=Malloc0:Nvme0n1:Malloc1"
echo " --test-cases=TESTS Coma-separated list of tests to run. Implemented test cases are: 1"
echo " See test/vhost/test_plan.md for more info."
echo "-x set -x for script debug"