e6c4c8a15c
Add test script to use SPDK Nvmf with NVML backends and run FIO read/write traffic with verify flag enabled. Change-Id: Iff8a85f65c36cb7372963076252577b7a1b2378f Signed-off-by: lgalkax <lukaszx.galka@intel.com> Signed-off-by: Karol Latecki <karol.latecki@intel.com> Reviewed-on: https://review.gerrithub.io/379247 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
65 lines
1.7 KiB
Bash
Executable File
65 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
if [ ! $(uname -s) = Linux ]; then
|
|
exit 0
|
|
fi
|
|
|
|
source $rootdir/test/nvmf/common.sh
|
|
|
|
timing_enter nvmf_tgt
|
|
|
|
# NVMF_TEST_CORE_MASK is the biggest core mask specified by
|
|
# any of the nvmf_tgt tests. Using this mask for the stub
|
|
# ensures that if this mask spans CPU sockets, that we will
|
|
# allocate memory from both sockets. The stub will *not*
|
|
# run anything on the extra cores (and will sleep on master
|
|
# core 0) so there is no impact to the nvmf_tgt tests by
|
|
# specifying the bigger core mask.
|
|
start_stub "-s 2048 -i 0 -m $NVMF_TEST_CORE_MASK"
|
|
trap "kill_stub; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
export NVMF_APP="./app/nvmf_tgt/nvmf_tgt -i 0"
|
|
|
|
run_test test/nvmf/fio/fio.sh
|
|
run_test test/nvmf/filesystem/filesystem.sh
|
|
run_test test/nvmf/discovery/discovery.sh
|
|
run_test test/nvmf/nvme_cli/nvme_cli.sh
|
|
run_test test/nvmf/lvol/nvmf_lvol.sh
|
|
run_test test/nvmf/shutdown/shutdown.sh
|
|
|
|
if [ $SPDK_TEST_NVML -eq 1 ]; then
|
|
run_test test/nvmf/pmem/nvmf_pmem.sh 10
|
|
fi
|
|
|
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
|
run_test test/nvmf/multiconnection/multiconnection.sh
|
|
fi
|
|
|
|
if [ $RUN_NIGHTLY -eq 1 ] && [ $SPDK_TEST_NVML -eq 1 ]; then
|
|
run_test test/nvmf/pmem/nvmf_pmem.sh 600
|
|
fi
|
|
|
|
timing_enter host
|
|
|
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
|
run_test test/nvmf/host/aer.sh
|
|
fi
|
|
run_test test/nvmf/host/bdevperf.sh
|
|
run_test test/nvmf/host/identify.sh
|
|
run_test test/nvmf/host/perf.sh
|
|
run_test test/nvmf/host/identify_kernel_nvmf.sh
|
|
run_test test/nvmf/host/fio.sh
|
|
|
|
timing_exit host
|
|
trap - SIGINT SIGTERM EXIT
|
|
kill_stub
|
|
|
|
# TODO: enable nvme device detachment for multi-process so that
|
|
# we can use the stub for this test
|
|
run_test test/nvmf/rpc/rpc.sh
|
|
revert_soft_roce
|
|
timing_exit nvmf_tgt
|