2015-09-21 21:48:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
rootdir=$(readlink -f $(dirname $0))
|
2018-02-27 22:14:08 +00:00
|
|
|
source "$rootdir/test/common/autotest_common.sh"
|
2016-07-08 21:19:11 +00:00
|
|
|
source "$rootdir/test/nvmf/common.sh"
|
2015-09-21 21:48:40 +00:00
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
if [ $EUID -ne 0 ]; then
|
|
|
|
echo "$0 must be run as root"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-07-06 16:26:13 +00:00
|
|
|
if [ $(uname -s) = Linux ]; then
|
|
|
|
# set core_pattern to a known value to avoid ABRT, systemd-coredump, etc.
|
|
|
|
echo "core" > /proc/sys/kernel/core_pattern
|
|
|
|
fi
|
|
|
|
|
2018-02-28 16:42:12 +00:00
|
|
|
trap "process_core; autotest_cleanup; exit 1" SIGINT SIGTERM EXIT
|
2015-09-25 16:48:11 +00:00
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
timing_enter autotest
|
|
|
|
|
2017-12-18 21:20:41 +00:00
|
|
|
create_test_list
|
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
src=$(readlink -f $(dirname $0))
|
|
|
|
out=$PWD
|
|
|
|
cd $src
|
|
|
|
|
2018-01-05 03:56:49 +00:00
|
|
|
./scripts/setup.sh status
|
|
|
|
|
2018-04-26 23:46:08 +00:00
|
|
|
freebsd_update_contigmem_mod
|
|
|
|
|
2015-10-22 18:26:21 +00:00
|
|
|
if hash lcov; then
|
2017-05-08 20:57:23 +00:00
|
|
|
# setup output dir for unittest.sh
|
|
|
|
export UT_COVERAGE=$out/ut_coverage
|
2015-11-11 20:09:51 +00:00
|
|
|
export LCOV_OPTS="
|
|
|
|
--rc lcov_branch_coverage=1
|
|
|
|
--rc lcov_function_coverage=1
|
|
|
|
--rc genhtml_branch_coverage=1
|
|
|
|
--rc genhtml_function_coverage=1
|
|
|
|
--rc genhtml_legend=1
|
|
|
|
--rc geninfo_all_blocks=1
|
|
|
|
"
|
2016-09-13 17:16:41 +00:00
|
|
|
export LCOV="lcov $LCOV_OPTS --no-external"
|
2018-02-12 15:59:50 +00:00
|
|
|
# Print lcov version to log
|
|
|
|
$LCOV -v
|
2015-10-22 18:26:21 +00:00
|
|
|
# zero out coverage data
|
2017-02-27 19:37:33 +00:00
|
|
|
$LCOV -q -c -i -t "Baseline" -d $src -o cov_base.info
|
2015-10-22 18:26:21 +00:00
|
|
|
fi
|
|
|
|
|
2016-08-15 17:43:53 +00:00
|
|
|
# Make sure the disks are clean (no leftover partition tables)
|
|
|
|
timing_enter cleanup
|
2017-11-09 23:33:29 +00:00
|
|
|
# Remove old domain socket pathname just in case
|
2017-11-22 19:10:29 +00:00
|
|
|
rm -f /var/tmp/spdk*.sock
|
2016-08-15 17:43:53 +00:00
|
|
|
if [ $(uname -s) = Linux ]; then
|
|
|
|
# Load the kernel driver
|
|
|
|
./scripts/setup.sh reset
|
|
|
|
|
|
|
|
# Let the kernel discover any filesystems or partitions
|
|
|
|
sleep 10
|
|
|
|
|
|
|
|
# Delete all partitions on NVMe devices
|
2017-05-30 23:17:51 +00:00
|
|
|
devs=`lsblk -l -o NAME | grep nvme | grep -v p` || true
|
2016-08-15 17:43:53 +00:00
|
|
|
for dev in $devs; do
|
|
|
|
parted -s /dev/$dev mklabel msdos
|
|
|
|
done
|
2017-11-01 20:08:50 +00:00
|
|
|
|
|
|
|
# Load RAM disk driver if available
|
|
|
|
modprobe brd || true
|
2016-08-15 17:43:53 +00:00
|
|
|
fi
|
|
|
|
timing_exit cleanup
|
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
# set up huge pages
|
|
|
|
timing_enter afterboot
|
2016-02-19 21:11:08 +00:00
|
|
|
./scripts/setup.sh
|
2016-03-07 22:11:36 +00:00
|
|
|
timing_exit afterboot
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2016-07-08 21:19:11 +00:00
|
|
|
timing_enter nvmf_setup
|
|
|
|
rdma_device_init
|
|
|
|
timing_exit nvmf_setup
|
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
#####################
|
|
|
|
# Unit Tests
|
|
|
|
#####################
|
|
|
|
|
2017-05-24 16:25:45 +00:00
|
|
|
if [ $SPDK_TEST_UNITTEST -eq 1 ]; then
|
|
|
|
timing_enter unittest
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/unit/unittest.sh
|
2017-12-18 21:20:41 +00:00
|
|
|
report_test_completion "unittest"
|
2017-05-24 16:25:45 +00:00
|
|
|
timing_exit unittest
|
|
|
|
fi
|
2017-01-24 22:47:46 +00:00
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
timing_enter lib
|
|
|
|
|
2017-03-08 19:17:32 +00:00
|
|
|
if [ $SPDK_TEST_BLOCKDEV -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/bdev/blockdev.sh
|
2018-04-04 16:38:39 +00:00
|
|
|
if [ $(uname -s) = Linux ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/bdev/bdevjson/json_config.sh
|
2018-07-04 19:05:25 +00:00
|
|
|
if modprobe -n nbd; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/bdev/nbdjson/json_config.sh
|
2018-07-04 19:05:25 +00:00
|
|
|
fi
|
2018-04-04 16:38:39 +00:00
|
|
|
fi
|
2017-03-08 19:17:32 +00:00
|
|
|
fi
|
|
|
|
|
2018-07-26 01:32:05 +00:00
|
|
|
if [ $SPDK_TEST_JSON -eq 1 ]; then
|
|
|
|
run_test suite test/config_converter/test_converter.sh
|
|
|
|
fi
|
|
|
|
|
2017-03-08 19:17:32 +00:00
|
|
|
if [ $SPDK_TEST_EVENT -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/event/event.sh
|
2017-03-08 19:17:32 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $SPDK_TEST_NVME -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/nvme/nvme.sh
|
2018-07-10 16:32:30 +00:00
|
|
|
if [ $SPDK_TEST_NVME_CLI -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/nvme/spdk_nvme_cli.sh
|
2018-07-10 16:32:30 +00:00
|
|
|
fi
|
2017-06-12 05:08:19 +00:00
|
|
|
# Only test hotplug without ASAN enabled. Since if it is
|
|
|
|
# enabled, it catches SEGV earlier than our handler which
|
|
|
|
# breaks the hotplug logic
|
|
|
|
if [ $SPDK_RUN_ASAN -eq 0 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/nvme/hotplug.sh intel
|
2017-06-12 05:08:19 +00:00
|
|
|
fi
|
2016-11-15 06:54:52 +00:00
|
|
|
fi
|
2017-03-08 19:17:32 +00:00
|
|
|
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/env/env.sh
|
2018-08-30 11:05:39 +00:00
|
|
|
run_test suite test/rpc_client/rpc_client.sh
|
2017-03-08 19:17:32 +00:00
|
|
|
|
|
|
|
if [ $SPDK_TEST_IOAT -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite test/ioat/ioat.sh
|
2017-03-08 19:17:32 +00:00
|
|
|
fi
|
2015-09-21 21:48:40 +00:00
|
|
|
|
|
|
|
timing_exit lib
|
|
|
|
|
2017-05-10 22:01:26 +00:00
|
|
|
if [ $SPDK_TEST_ISCSI -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/iscsi_tgt/iscsi_tgt.sh posix
|
|
|
|
run_test suite ./test/iscsi_tgt/iscsijson/json_config.sh
|
2018-09-11 01:52:06 +00:00
|
|
|
run_test suite ./test/spdkcli/iscsi.sh
|
2016-08-03 21:37:16 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-22 20:35:00 +00:00
|
|
|
if [ $SPDK_TEST_BLOBFS -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/blobfs/rocksdb/rocksdb.sh
|
|
|
|
run_test suite ./test/blobstore/blobstore.sh
|
2017-03-22 20:35:00 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-08 19:17:32 +00:00
|
|
|
if [ $SPDK_TEST_NVMF -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/nvmf/nvmf.sh
|
|
|
|
run_test suite ./test/nvmf/nvmfjson/json_config.sh
|
2018-08-28 14:49:57 +00:00
|
|
|
run_test suite ./test/spdkcli/nvmf.sh
|
2017-03-08 19:17:32 +00:00
|
|
|
fi
|
2016-06-07 15:49:44 +00:00
|
|
|
|
2017-03-08 19:17:32 +00:00
|
|
|
if [ $SPDK_TEST_VHOST -eq 1 ]; then
|
|
|
|
timing_enter vhost
|
2017-11-15 13:56:07 +00:00
|
|
|
timing_enter negative
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --negative
|
2017-11-15 13:56:07 +00:00
|
|
|
timing_exit negative
|
2017-11-09 23:38:44 +00:00
|
|
|
|
2018-05-10 16:39:55 +00:00
|
|
|
timing_enter vhost_json_config
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/json_config/json_config.sh
|
2018-05-10 16:39:55 +00:00
|
|
|
timing_exit vhost_json_config
|
|
|
|
|
2018-08-09 18:21:31 +00:00
|
|
|
timing_enter vhost_boot
|
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --boot
|
|
|
|
timing_exit vhost_boot
|
|
|
|
|
2017-11-21 09:33:20 +00:00
|
|
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
2018-01-23 01:51:56 +00:00
|
|
|
timing_enter integrity_blk
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --integrity-blk
|
2018-01-23 01:51:56 +00:00
|
|
|
timing_exit integrity_blk
|
2017-11-21 09:33:20 +00:00
|
|
|
|
|
|
|
timing_enter integrity
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --integrity
|
2017-11-21 09:33:20 +00:00
|
|
|
timing_exit integrity
|
2017-10-17 18:59:36 +00:00
|
|
|
|
2018-02-06 11:20:21 +00:00
|
|
|
timing_enter fs_integrity_scsi
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --fs-integrity-scsi
|
2018-02-06 11:20:21 +00:00
|
|
|
timing_exit fs_integrity_scsi
|
2017-12-07 11:14:29 +00:00
|
|
|
|
2018-02-06 11:20:21 +00:00
|
|
|
timing_enter fs_integrity_blk
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --fs-integrity-blk
|
2018-02-06 11:20:21 +00:00
|
|
|
timing_exit fs_integrity_blk
|
2017-11-27 16:47:15 +00:00
|
|
|
|
|
|
|
timing_enter integrity_lvol_scsi_nightly
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --integrity-lvol-scsi-nightly
|
2017-11-27 16:47:15 +00:00
|
|
|
timing_exit integrity_lvol_scsi_nightly
|
|
|
|
|
|
|
|
timing_enter integrity_lvol_blk_nightly
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --integrity-lvol-blk-nightly
|
2017-11-27 16:47:15 +00:00
|
|
|
timing_exit integrity_lvol_blk_nightly
|
2018-04-16 19:27:56 +00:00
|
|
|
|
|
|
|
timing_enter vhost_migration
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --migration
|
2018-04-16 19:27:56 +00:00
|
|
|
timing_exit vhost_migration
|
2017-11-09 23:38:44 +00:00
|
|
|
|
2018-06-05 08:44:35 +00:00
|
|
|
# timing_enter readonly
|
2018-03-13 05:57:41 +00:00
|
|
|
# run_test suite ./test/vhost/spdk_vhost.sh --readonly
|
2018-06-05 08:44:35 +00:00
|
|
|
# timing_exit readonly
|
2018-03-15 18:40:13 +00:00
|
|
|
fi
|
|
|
|
|
2017-11-09 23:38:44 +00:00
|
|
|
timing_enter integrity_lvol_scsi
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --integrity-lvol-scsi
|
2017-11-09 23:38:44 +00:00
|
|
|
timing_exit integrity_lvol_scsi
|
|
|
|
|
2018-01-23 01:51:56 +00:00
|
|
|
timing_enter integrity_lvol_blk
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/spdk_vhost.sh --integrity-lvol-blk
|
2018-01-23 01:51:56 +00:00
|
|
|
timing_exit integrity_lvol_blk
|
2017-11-09 23:38:44 +00:00
|
|
|
|
2018-06-22 19:27:31 +00:00
|
|
|
timing_enter spdk_cli
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/spdkcli/vhost.sh
|
2018-06-22 19:27:31 +00:00
|
|
|
timing_exit spdk_cli
|
|
|
|
|
2017-10-23 15:03:18 +00:00
|
|
|
timing_exit vhost
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $SPDK_TEST_LVOL -eq 1 ]; then
|
2017-11-09 23:38:44 +00:00
|
|
|
timing_enter lvol
|
2018-02-07 13:57:05 +00:00
|
|
|
test_cases="1,50,51,52,53,100,101,102,150,200,201,250,251,252,253,254,255,"
|
2018-07-23 14:19:11 +00:00
|
|
|
test_cases+="300,301,450,451,452,550,551,552,553,"
|
|
|
|
test_cases+="600,601,650,651,652,654,655,"
|
2018-07-30 15:42:37 +00:00
|
|
|
test_cases+="700,701,702,750,751,752,753,754,755,756,757,758,759,"
|
2018-04-23 17:53:47 +00:00
|
|
|
test_cases+="800,801,802,803,804,10000"
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/lvol/lvol.sh --test-cases=$test_cases
|
2018-08-29 07:11:25 +00:00
|
|
|
run_test suite ./test/blobstore/blob_io_wait/blob_io_wait.sh
|
2017-12-18 21:20:41 +00:00
|
|
|
report_test_completion "lvol"
|
2017-11-09 23:38:44 +00:00
|
|
|
timing_exit lvol
|
2017-03-08 19:17:32 +00:00
|
|
|
fi
|
2017-03-02 14:12:20 +00:00
|
|
|
|
2017-09-12 13:47:30 +00:00
|
|
|
if [ $SPDK_TEST_VHOST_INIT -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/vhost/initiator/blockdev.sh
|
|
|
|
run_test suite ./test/vhost/initiator/json_config.sh
|
|
|
|
run_test suite ./test/spdkcli/virtio.sh
|
2018-04-02 19:56:09 +00:00
|
|
|
report_test_completion "vhost_initiator"
|
2017-09-12 13:47:30 +00:00
|
|
|
fi
|
|
|
|
|
2018-04-03 23:07:39 +00:00
|
|
|
if [ $SPDK_TEST_PMDK -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/pmem/pmem.sh -x
|
|
|
|
run_test suite ./test/pmem/json_config/json_config.sh
|
|
|
|
run_test suite ./test/spdkcli/pmem.sh
|
2017-09-26 13:02:52 +00:00
|
|
|
fi
|
|
|
|
|
2018-07-03 01:37:42 +00:00
|
|
|
if [ $SPDK_TEST_RBD -eq 1 ]; then
|
2018-03-13 05:57:41 +00:00
|
|
|
run_test suite ./test/bdev/bdevjson/rbd_json_config.sh
|
|
|
|
run_test suite ./test/spdkcli/rbd.sh
|
2018-07-03 01:37:42 +00:00
|
|
|
fi
|
|
|
|
|
2016-03-07 22:11:36 +00:00
|
|
|
timing_enter cleanup
|
2018-02-28 16:42:12 +00:00
|
|
|
autotest_cleanup
|
2016-03-07 22:11:36 +00:00
|
|
|
timing_exit cleanup
|
2015-09-21 21:48:40 +00:00
|
|
|
|
|
|
|
timing_exit autotest
|
|
|
|
chmod a+r $output_dir/timing.txt
|
|
|
|
|
2015-09-25 16:48:11 +00:00
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
# catch any stray core files
|
|
|
|
process_core
|
2015-10-22 18:26:21 +00:00
|
|
|
|
|
|
|
if hash lcov; then
|
|
|
|
# generate coverage data and combine with baseline
|
2017-02-27 19:37:33 +00:00
|
|
|
$LCOV -q -c -d $src -t "$(hostname)" -o cov_test.info
|
|
|
|
$LCOV -q -a cov_base.info -a cov_test.info -o $out/cov_total.info
|
2017-06-30 16:58:21 +00:00
|
|
|
$LCOV -q -r $out/cov_total.info '*/dpdk/*' -o $out/cov_total.info
|
2017-07-12 22:11:57 +00:00
|
|
|
$LCOV -q -r $out/cov_total.info '/usr/*' -o $out/cov_total.info
|
2017-05-08 20:57:23 +00:00
|
|
|
git clean -f "*.gcda"
|
2017-06-20 22:29:43 +00:00
|
|
|
rm -f cov_base.info cov_test.info OLD_STDOUT OLD_STDERR
|
2015-10-22 18:26:21 +00:00
|
|
|
fi
|