f9c496b8e2
Signed-off-by: Jun Wen <junx.wen@intel.com> Change-Id: Ib18e8c3971da53f91de5352eaa476b4acd0ce4db Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10377 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Michal Berger <michalx.berger@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
16 lines
449 B
Bash
Executable File
16 lines
449 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
|
|
source $rootdir/test/vfio_user/common.sh
|
|
|
|
echo "Running SPDK vfio-user fio autotest..."
|
|
|
|
vhosttestinit
|
|
|
|
run_test "vfio_user_fio" $WORKDIR/vfio_user_fio/vfio_user_fio.sh
|
|
run_test "vfio_user_restart_vm" $WORKDIR/vfio_user_restart_vm/vfio_user_restart_vm.sh
|
|
|
|
vhosttestfini
|