per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices. git log --follow -C90% --format=%ad --date default <file> | tail -1 and then pull just the year from the result. Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc) For intel copyrights added, --follow and -C95% were used. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: I2ef86976095b88a9bf5b1003e59f3943cd6bbe4c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15209 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
76 lines
2.9 KiB
Bash
Executable File
76 lines
2.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2018 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
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
|