9c3ba11a29
Also, remove the unecessary FIXME. Signed-off-by: Michal Berger <michalx.berger@intel.com> Change-Id: I3feda936cff62d79e921247dd40613c389ac3a3c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6586 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
72 lines
2.8 KiB
Bash
Executable File
72 lines
2.8 KiB
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
|
|
|
|
echo "Running SPDK vhost fio autotest..."
|
|
if [[ $(uname -s) != Linux ]]; then
|
|
echo ""
|
|
echo "INFO: Vhost tests are only for Linux machine."
|
|
echo ""
|
|
exit 0
|
|
fi
|
|
|
|
vhosttestinit
|
|
|
|
run_test "vhost_negative" $WORKDIR/other/negative.sh
|
|
|
|
run_test "vhost_boot" $WORKDIR/vhost_boot/vhost_boot.sh --vm_image=$VM_IMAGE
|
|
|
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
|
echo 'Running blk integrity suite...'
|
|
run_test "vhost_blk_integrity" $WORKDIR/fiotest/fio.sh -x --fio-bin=$FIO_BIN \
|
|
--vm=0,$VM_IMAGE,Nvme0n1p0:RaidBdev0:RaidBdev1:RaidBdev2 \
|
|
--test-type=spdk_vhost_blk \
|
|
--fio-job=$WORKDIR/common/fio_jobs/default_integrity.job
|
|
|
|
echo 'Running SCSI integrity suite...'
|
|
run_test "vhost_scsi_integrity" $WORKDIR/fiotest/fio.sh -x --fio-bin=$FIO_BIN \
|
|
--vm=0,$VM_IMAGE,Nvme0n1p0:RaidBdev0:RaidBdev1:RaidBdev2 \
|
|
--test-type=spdk_vhost_scsi \
|
|
--fio-job=$WORKDIR/common/fio_jobs/default_integrity.job
|
|
|
|
echo 'Running filesystem integrity suite with SCSI...'
|
|
run_test "vhost_scsi_fs_integrity" $WORKDIR/integrity/integrity_start.sh --ctrl-type=spdk_vhost_scsi --fs="xfs ntfs btrfs ext4"
|
|
|
|
echo 'Running filesystem integrity suite with BLK...'
|
|
run_test "vhost_blk_fs_integrity" $WORKDIR/integrity/integrity_start.sh --ctrl-type=spdk_vhost_blk --fs="xfs ntfs btrfs ext4"
|
|
|
|
echo 'Running lvol integrity nightly suite with multiple cores and two vhost controllers (vhost_scsi)'
|
|
run_test "vhost_scsi_cores_2ctrl" $WORKDIR/lvol/lvol_test.sh --fio-bin=$FIO_BIN \
|
|
--ctrl-type=spdk_vhost_scsi --distribute-cores --vm-count=2
|
|
|
|
echo 'Running lvol integrity nightly suite with multiple cores and two vhost controllers (vhost_blk)'
|
|
run_test "vhost_blk_cores_2ctrl" $WORKDIR/lvol/lvol_test.sh --fio-bin=$FIO_BIN \
|
|
--ctrl-type=spdk_vhost_blk --distribute-cores --vm-count=2
|
|
|
|
echo 'Running readonly tests suite...'
|
|
run_test "vhost_readonly" $WORKDIR/readonly/readonly.sh --vm_image=$VM_IMAGE --disk=Nvme0n1 -x
|
|
|
|
echo 'Running migration suite...'
|
|
run_test "vhost_migration" $WORKDIR/migration/migration.sh -x \
|
|
--fio-bin=$FIO_BIN --os=$VM_IMAGE
|
|
fi
|
|
|
|
echo 'Running lvol integrity suite...'
|
|
run_test "vhost_scsi_lvol_integrity" $WORKDIR/lvol/lvol_test.sh -x --fio-bin=$FIO_BIN \
|
|
--ctrl-type=spdk_vhost_scsi --thin-provisioning
|
|
|
|
echo 'Running lvol integrity suite...'
|
|
run_test "vhost_blk_lvol_integrity" $WORKDIR/lvol/lvol_test.sh -x --fio-bin=$FIO_BIN \
|
|
--ctrl-type=spdk_vhost_blk
|
|
|
|
echo 'Running blk packed ring integrity suite...'
|
|
run_test "vhost_blk_packed_ring_integrity" $WORKDIR/fiotest/fio.sh -x --fio-bin=$FIO_BIN \
|
|
--vm=0,$VM_IMAGE,Nvme0n1p0 \
|
|
--test-type=spdk_vhost_blk \
|
|
--fio-job=$WORKDIR/common/fio_jobs/default_integrity.job \
|
|
--packed
|
|
|
|
run_test "spdkcli_vhost" ./test/spdkcli/vhost.sh
|