5f7eb6e38b
We are doing away with using the stub application as much as possible, so let's just remove references to it where we can. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I52802474f1aaaf100c1b929f4e3ac555532a8410 Reviewed-on: https://review.gerrithub.io/c/444305 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
52 lines
1.4 KiB
Bash
Executable File
52 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
if [ ! $(uname -s) = Linux ]; then
|
|
exit 0
|
|
fi
|
|
|
|
source $rootdir/test/nvmf/common.sh
|
|
|
|
timing_enter nvmf_tgt
|
|
|
|
trap "exit 1" SIGINT SIGTERM EXIT
|
|
|
|
run_test suite test/nvmf/filesystem/filesystem.sh
|
|
run_test suite test/nvmf/discovery/discovery.sh
|
|
run_test suite test/nvmf/connect_disconnect/connect_disconnect.sh
|
|
if [ $SPDK_TEST_NVME_CLI -eq 1 ]; then
|
|
run_test suite test/nvmf/nvme_cli/nvme_cli.sh
|
|
fi
|
|
run_test suite test/nvmf/lvol/nvmf_lvol.sh
|
|
run_test suite test/nvmf/shutdown/shutdown.sh
|
|
run_test suite test/nvmf/bdev_io_wait/bdev_io_wait.sh
|
|
run_test suite test/nvmf/create_transport/create_transport.sh
|
|
|
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
|
run_test suite test/nvmf/multiconnection/multiconnection.sh
|
|
fi
|
|
|
|
timing_enter host
|
|
|
|
run_test suite test/nvmf/host/bdevperf.sh
|
|
run_test suite test/nvmf/host/identify.sh
|
|
run_test suite test/nvmf/host/perf.sh
|
|
# TODO: disabled due to intermittent failures (RDMA_CM_EVENT_UNREACHABLE/ETIMEDOUT)
|
|
#run_test test/nvmf/host/identify_kernel_nvmf.sh
|
|
run_test suite test/nvmf/host/aer.sh
|
|
run_test suite test/nvmf/host/fio.sh
|
|
|
|
run_test suite test/nvmf/nmic/nmic.sh
|
|
|
|
timing_exit host
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
run_test suite test/nvmf/rpc/rpc.sh
|
|
run_test suite test/nvmf/fio/fio.sh
|
|
revert_soft_roce
|
|
|
|
report_test_completion "nvmf"
|
|
timing_exit nvmf_tgt
|