2015-09-21 14:48:40 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
rootdir=$(readlink -f $(dirname $0))
|
|
|
|
source "$rootdir/scripts/autotest_common.sh"
|
2016-07-08 14:19:11 -07:00
|
|
|
source "$rootdir/test/nvmf/common.sh"
|
2015-09-21 14:48:40 -07:00
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
if [ $EUID -ne 0 ]; then
|
|
|
|
echo "$0 must be run as root"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-07-06 09:26:13 -07: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
|
|
|
|
|
2016-02-19 14:11:08 -07:00
|
|
|
trap "process_core; $rootdir/scripts/setup.sh reset; exit 1" SIGINT SIGTERM EXIT
|
2015-09-25 09:48:11 -07:00
|
|
|
|
2015-09-21 14:48:40 -07:00
|
|
|
timing_enter autotest
|
|
|
|
|
|
|
|
src=$(readlink -f $(dirname $0))
|
|
|
|
out=$PWD
|
|
|
|
cd $src
|
|
|
|
|
2015-10-22 11:26:21 -07:00
|
|
|
if hash lcov; then
|
2017-05-08 13:57:23 -07:00
|
|
|
# setup output dir for unittest.sh
|
|
|
|
export UT_COVERAGE=$out/ut_coverage
|
2015-11-11 13:09:51 -07: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 10:16:41 -07:00
|
|
|
export LCOV="lcov $LCOV_OPTS --no-external"
|
2015-10-22 11:26:21 -07:00
|
|
|
# zero out coverage data
|
2017-02-27 12:37:33 -07:00
|
|
|
$LCOV -q -c -i -t "Baseline" -d $src -o cov_base.info
|
2015-10-22 11:26:21 -07:00
|
|
|
fi
|
|
|
|
|
2016-08-15 10:43:53 -07:00
|
|
|
# Make sure the disks are clean (no leftover partition tables)
|
|
|
|
timing_enter cleanup
|
|
|
|
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 16:17:51 -07:00
|
|
|
devs=`lsblk -l -o NAME | grep nvme | grep -v p` || true
|
2016-08-15 10:43:53 -07:00
|
|
|
for dev in $devs; do
|
|
|
|
parted -s /dev/$dev mklabel msdos
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
timing_exit cleanup
|
|
|
|
|
2015-09-21 14:48:40 -07:00
|
|
|
# set up huge pages
|
|
|
|
timing_enter afterboot
|
2016-02-19 14:11:08 -07:00
|
|
|
./scripts/setup.sh
|
2016-03-07 15:11:36 -07:00
|
|
|
timing_exit afterboot
|
2015-09-21 14:48:40 -07:00
|
|
|
|
2016-07-08 14:19:11 -07:00
|
|
|
timing_enter nvmf_setup
|
|
|
|
rdma_device_init
|
|
|
|
timing_exit nvmf_setup
|
|
|
|
|
2016-11-16 11:18:40 -07:00
|
|
|
timing_enter rbd_setup
|
|
|
|
rbd_setup
|
|
|
|
timing_exit rbd_setup
|
|
|
|
|
2015-09-21 14:48:40 -07:00
|
|
|
#####################
|
|
|
|
# Unit Tests
|
|
|
|
#####################
|
|
|
|
|
2017-05-24 09:25:45 -07:00
|
|
|
if [ $SPDK_TEST_UNITTEST -eq 1 ]; then
|
|
|
|
timing_enter unittest
|
2017-07-11 09:56:52 -07:00
|
|
|
run_test ./unittest.sh
|
2017-05-24 09:25:45 -07:00
|
|
|
timing_exit unittest
|
|
|
|
fi
|
2017-01-24 15:47:46 -07:00
|
|
|
|
2015-09-21 14:48:40 -07:00
|
|
|
timing_enter lib
|
|
|
|
|
2017-03-08 12:17:32 -07:00
|
|
|
if [ $SPDK_TEST_BLOCKDEV -eq 1 ]; then
|
|
|
|
run_test test/lib/bdev/blockdev.sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $SPDK_TEST_EVENT -eq 1 ]; then
|
|
|
|
run_test test/lib/event/event.sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $SPDK_TEST_NVME -eq 1 ]; then
|
|
|
|
run_test test/lib/nvme/nvme.sh
|
2017-06-12 13:08:19 +08: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
|
|
|
|
run_test test/lib/nvme/hotplug.sh intel
|
|
|
|
fi
|
2016-11-15 01:54:52 -05:00
|
|
|
fi
|
2017-03-08 12:17:32 -07:00
|
|
|
|
2016-11-22 13:03:26 -07:00
|
|
|
run_test test/lib/env/env.sh
|
2017-03-08 12:17:32 -07:00
|
|
|
|
|
|
|
if [ $SPDK_TEST_IOAT -eq 1 ]; then
|
|
|
|
run_test test/lib/ioat/ioat.sh
|
|
|
|
fi
|
2015-09-21 14:48:40 -07:00
|
|
|
|
|
|
|
timing_exit lib
|
|
|
|
|
2017-05-10 15:01:26 -07:00
|
|
|
if [ $SPDK_TEST_ISCSI -eq 1 ]; then
|
|
|
|
run_test ./test/iscsi_tgt/iscsi_tgt.sh
|
2016-08-03 14:37:16 -07:00
|
|
|
fi
|
|
|
|
|
2017-03-22 13:35:00 -07:00
|
|
|
if [ $SPDK_TEST_BLOBFS -eq 1 ]; then
|
|
|
|
run_test ./test/blobfs/rocksdb/rocksdb.sh
|
|
|
|
fi
|
|
|
|
|
2017-03-08 12:17:32 -07:00
|
|
|
if [ $SPDK_TEST_NVMF -eq 1 ]; then
|
2017-05-27 08:05:26 +08:00
|
|
|
run_test ./test/nvmf/nvmf.sh
|
2017-03-08 12:17:32 -07:00
|
|
|
fi
|
2016-06-07 08:49:44 -07:00
|
|
|
|
2017-03-08 12:17:32 -07:00
|
|
|
if [ $SPDK_TEST_VHOST -eq 1 ]; then
|
|
|
|
timing_enter vhost
|
2017-07-13 18:02:19 +02:00
|
|
|
run_test ./test/vhost/spdk_vhost.sh --integrity-blk
|
2017-03-08 12:17:32 -07:00
|
|
|
run_test ./test/vhost/spdk_vhost.sh --integrity
|
2017-07-25 12:27:43 +02:00
|
|
|
run_test ./test/vhost/spdk_vhost.sh --integrity-lvol-scsi
|
|
|
|
run_test ./test/vhost/spdk_vhost.sh --integrity-lvol-blk
|
2017-03-08 12:17:32 -07:00
|
|
|
timing_exit vhost
|
|
|
|
fi
|
2017-03-02 15:12:20 +01:00
|
|
|
|
2016-03-07 15:11:36 -07:00
|
|
|
timing_enter cleanup
|
2016-11-16 11:18:40 -07:00
|
|
|
rbd_cleanup
|
2016-02-19 14:11:08 -07:00
|
|
|
./scripts/setup.sh reset
|
2016-01-19 11:36:50 +08:00
|
|
|
./scripts/build_kmod.sh clean
|
2016-03-07 15:11:36 -07:00
|
|
|
timing_exit cleanup
|
2015-09-21 14:48:40 -07:00
|
|
|
|
|
|
|
timing_exit autotest
|
|
|
|
chmod a+r $output_dir/timing.txt
|
|
|
|
|
2015-09-25 09:48:11 -07:00
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
|
2015-09-21 14:48:40 -07:00
|
|
|
# catch any stray core files
|
|
|
|
process_core
|
2015-10-22 11:26:21 -07:00
|
|
|
|
|
|
|
if hash lcov; then
|
|
|
|
# generate coverage data and combine with baseline
|
2017-02-27 12:37:33 -07: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 09:58:21 -07:00
|
|
|
$LCOV -q -r $out/cov_total.info '*/dpdk/*' -o $out/cov_total.info
|
2017-07-12 15:11:57 -07:00
|
|
|
$LCOV -q -r $out/cov_total.info '/usr/*' -o $out/cov_total.info
|
2017-05-08 13:57:23 -07:00
|
|
|
git clean -f "*.gcda"
|
2017-06-20 15:29:43 -07:00
|
|
|
rm -f cov_base.info cov_test.info OLD_STDOUT OLD_STDERR
|
2015-10-22 11:26:21 -07:00
|
|
|
fi
|