diff --git a/test/vhost/common/run_vhost.sh b/test/vhost/common/run_vhost.sh index ea3425e85..bd6c496a0 100755 --- a/test/vhost/common/run_vhost.sh +++ b/test/vhost/common/run_vhost.sh @@ -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}" ;; diff --git a/test/vhost/migration/migration.sh b/test/vhost/migration/migration.sh index f4891ad00..29b1cc21d 100755 --- a/test/vhost/migration/migration.sh +++ b/test/vhost/migration/migration.sh @@ -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"