Making this explicit makes the tests clearer Change-Id: I6c37f873683b38b644bebc42532694d45a181d04 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/461387 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Maciej Szwed <maciej.szwed@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
33 lines
853 B
Bash
Executable File
33 lines
853 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $rootdir/test/vhost/common.sh
|
|
|
|
rpc_py="$rootdir/scripts/rpc.py -s $(get_vhost_dir)/rpc.sock"
|
|
|
|
function run_spdk_fio() {
|
|
fio_bdev --ioengine=spdk_bdev \
|
|
"$rootdir/test/vhost/common/fio_jobs/default_initiator.job" --runtime=10 --rw=randrw \
|
|
--spdk_mem=1024 --spdk_single_seg=1 --spdk_conf=$testdir/bdev.conf "$@"
|
|
}
|
|
|
|
vhosttestinit
|
|
|
|
trap 'error_exit "${FUNCNAME}" "${LINENO}"' ERR SIGTERM SIGABRT
|
|
|
|
vhost_run 0
|
|
|
|
$rpc_py construct_malloc_bdev -b Malloc 124 4096
|
|
$rpc_py construct_vhost_blk_controller Malloc.0 Malloc
|
|
|
|
run_spdk_fio --size=50% --offset=0 --filename=VirtioBlk0 &
|
|
run_fio_pid=$!
|
|
sleep 1
|
|
run_spdk_fio --size=50% --offset=50% --filename=VirtioBlk0
|
|
wait $run_fio_pid
|
|
vhost_kill
|
|
|
|
vhosttestfini
|