2015-11-04 18:02:40 +00:00
|
|
|
#!/usr/bin/env bash
|
2017-01-24 22:44:19 +00:00
|
|
|
#
|
|
|
|
# Environment variables:
|
|
|
|
# $valgrind Valgrind executable name, if desired
|
2015-11-04 18:02:40 +00:00
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2017-05-08 20:57:23 +00:00
|
|
|
# setup local unit test coverage if cov is available
|
|
|
|
if hash lcov && grep -q '#define SPDK_CONFIG_COVERAGE 1' config.h; then
|
|
|
|
cov_avail="yes"
|
|
|
|
else
|
|
|
|
cov_avail="no"
|
|
|
|
fi
|
|
|
|
if [ "$cov_avail" = "yes" ]; then
|
|
|
|
# set unit test output dir if not specified in env var
|
|
|
|
if [ -z ${UT_COVERAGE+x} ]; then
|
|
|
|
UT_COVERAGE="ut_coverage"
|
|
|
|
fi
|
|
|
|
mkdir -p $UT_COVERAGE
|
|
|
|
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
|
|
|
|
"
|
|
|
|
export LCOV="lcov $LCOV_OPTS --no-external"
|
|
|
|
# zero out coverage data
|
|
|
|
$LCOV -q -c -i -d . -t "Baseline" -o $UT_COVERAGE/ut_cov_base.info
|
|
|
|
fi
|
|
|
|
|
2017-03-20 18:26:50 +00:00
|
|
|
$valgrind test/lib/blob/blob_ut/blob_ut
|
|
|
|
|
2017-05-03 13:54:47 +00:00
|
|
|
$valgrind test/lib/blobfs/blobfs_async_ut/blobfs_async_ut
|
|
|
|
# blobfs_sync_ut hangs when run under valgrind, so don't use $valgrind
|
|
|
|
test/lib/blobfs/blobfs_sync_ut/blobfs_sync_ut
|
2017-03-22 20:35:00 +00:00
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/nvme/unit/nvme_c/nvme_ut
|
|
|
|
$valgrind test/lib/nvme/unit/nvme_ctrlr_c/nvme_ctrlr_ut
|
|
|
|
$valgrind test/lib/nvme/unit/nvme_ctrlr_cmd_c/nvme_ctrlr_cmd_ut
|
2017-01-09 15:43:41 +00:00
|
|
|
$valgrind test/lib/nvme/unit/nvme_ns_c/nvme_ns_ut
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/nvme/unit/nvme_ns_cmd_c/nvme_ns_cmd_ut
|
|
|
|
$valgrind test/lib/nvme/unit/nvme_qpair_c/nvme_qpair_ut
|
|
|
|
$valgrind test/lib/nvme/unit/nvme_pcie_c/nvme_pcie_ut
|
|
|
|
$valgrind test/lib/nvme/unit/nvme_quirks_c/nvme_quirks_ut
|
2015-12-03 21:30:38 +00:00
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/ioat/unit/ioat_ut
|
2016-05-09 20:16:32 +00:00
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/json/parse/json_parse_ut
|
|
|
|
$valgrind test/lib/json/util/json_util_ut
|
|
|
|
$valgrind test/lib/json/write/json_write_ut
|
2016-05-09 22:27:37 +00:00
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/jsonrpc/server/jsonrpc_server_ut
|
2016-05-19 20:29:37 +00:00
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/log/log_ut
|
2016-07-21 22:08:23 +00:00
|
|
|
|
2017-03-14 21:11:05 +00:00
|
|
|
$valgrind test/lib/nvmf/discovery/discovery_ut
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/nvmf/request/request_ut
|
|
|
|
$valgrind test/lib/nvmf/session/session_ut
|
|
|
|
$valgrind test/lib/nvmf/subsystem/subsystem_ut
|
|
|
|
$valgrind test/lib/nvmf/direct/direct_ut
|
2017-01-18 16:35:00 +00:00
|
|
|
$valgrind test/lib/nvmf/virtual/virtual_ut
|
2016-07-27 16:32:00 +00:00
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/scsi/dev/dev_ut
|
2017-01-24 23:18:12 +00:00
|
|
|
$valgrind test/lib/scsi/init/init_ut
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/scsi/lun/lun_ut
|
|
|
|
$valgrind test/lib/scsi/scsi_bdev/scsi_bdev_ut
|
|
|
|
$valgrind test/lib/scsi/scsi_nvme/scsi_nvme_ut
|
2016-09-15 00:12:15 +00:00
|
|
|
|
2017-03-29 20:04:05 +00:00
|
|
|
# TODO: fix valgrind warnings and add $valgrind to iSCSI tests
|
|
|
|
test/lib/iscsi/param/param_ut
|
2017-03-29 20:54:20 +00:00
|
|
|
$valgrind test/lib/iscsi/target_node/target_node_ut test/lib/iscsi/target_node/target_node.conf
|
2017-03-29 20:04:05 +00:00
|
|
|
test/lib/iscsi/pdu/pdu
|
|
|
|
|
2017-01-24 22:44:19 +00:00
|
|
|
$valgrind test/lib/util/bit_array/bit_array_ut
|
|
|
|
$valgrind test/lib/util/io_channel/io_channel_ut
|
2017-02-01 17:05:51 +00:00
|
|
|
$valgrind test/lib/util/string/string_ut
|
2017-05-03 23:57:59 +00:00
|
|
|
|
2017-05-08 20:57:23 +00:00
|
|
|
# local unit test coverage
|
|
|
|
if [ "$cov_avail" = "yes" ]; then
|
|
|
|
$LCOV -q -d . -c -t "$(hostname)" -o $UT_COVERAGE/ut_cov_test.info
|
|
|
|
$LCOV -q -a $UT_COVERAGE/ut_cov_base.info -a $UT_COVERAGE/ut_cov_test.info -o $UT_COVERAGE/ut_cov_total.info
|
|
|
|
$LCOV -q -a $UT_COVERAGE/ut_cov_total.info -o $UT_COVERAGE/ut_cov_unit.info
|
|
|
|
rm -f $UT_COVERAGE/ut_cov_base.info $UT_COVERAGE/ut_cov_test.info
|
|
|
|
genhtml $UT_COVERAGE/ut_cov_unit.info --output-directory $UT_COVERAGE
|
|
|
|
git clean -f "*.gcda"
|
|
|
|
fi
|
|
|
|
|
2017-05-03 23:57:59 +00:00
|
|
|
set +x
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "====================="
|
|
|
|
echo "All unit tests passed"
|
|
|
|
echo "====================="
|
2017-05-08 20:57:23 +00:00
|
|
|
if [ "$cov_avail" = "yes" ]; then
|
|
|
|
echo "Note: coverage report is here: ./$UT_COVERAGE"
|
|
|
|
else
|
|
|
|
echo "WARN: lcov not installed or SPDK built without coverage!"
|
|
|
|
fi
|
2017-05-03 23:57:59 +00:00
|
|
|
echo
|
|
|
|
echo
|