2015-09-21 21:48:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-05-09 11:22:41 +00:00
|
|
|
# If the configuration of tests is not provided, no tests will be carried out.
|
|
|
|
if [[ ! -f $1 ]]; then
|
|
|
|
echo "ERROR: SPDK test configuration not specified"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2015-10-03 00:11:56 +00:00
|
|
|
out=$PWD
|
2019-12-20 00:54:15 +00:00
|
|
|
rootdir=$(readlink -f $(dirname $0))
|
2019-12-20 00:38:20 +00:00
|
|
|
scanbuild="scan-build -o $out/scan-build-tmp --status-bugs"
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2019-12-20 00:54:15 +00:00
|
|
|
source "$1"
|
|
|
|
source "$rootdir/test/common/autotest_common.sh"
|
2015-10-05 17:54:32 +00:00
|
|
|
|
2019-12-20 00:54:15 +00:00
|
|
|
rm -rf /tmp/spdk
|
|
|
|
mkdir /tmp/spdk
|
|
|
|
umask 022
|
2015-10-08 19:40:44 +00:00
|
|
|
cd $rootdir
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2019-12-20 00:54:15 +00:00
|
|
|
# Print some test system info out for the log
|
2016-12-16 17:14:48 +00:00
|
|
|
date -u
|
|
|
|
git describe --tags
|
2019-12-20 00:29:52 +00:00
|
|
|
./configure $config_params
|
|
|
|
echo "** START ** Info for Hostname: $HOSTNAME"
|
|
|
|
uname -a
|
|
|
|
$MAKE cc_version
|
|
|
|
$MAKE cxx_version
|
|
|
|
echo "** END ** Info for Hostname: $HOSTNAME"
|
|
|
|
|
|
|
|
function ocf_precompile {
|
2018-11-02 00:00:24 +00:00
|
|
|
# We compile OCF sources ourselves
|
|
|
|
# They don't need to be checked with scanbuild and code coverage is not applicable
|
|
|
|
# So we precompile OCF now for further use as standalone static library
|
|
|
|
./configure $(echo $config_params | sed 's/--enable-coverage//g')
|
2019-01-21 09:05:59 +00:00
|
|
|
$MAKE $MAKEFLAGS include/spdk/config.h
|
2019-08-20 16:58:45 +00:00
|
|
|
CC=gcc CCAR=ar $MAKE $MAKEFLAGS -C lib/env_ocf exportlib O=$rootdir/build/ocf.a
|
2018-11-02 00:00:24 +00:00
|
|
|
# Set config to use precompiled library
|
|
|
|
config_params="$config_params --with-ocf=/$rootdir/build/ocf.a"
|
2019-12-20 00:29:52 +00:00
|
|
|
# need to reconfigure to avoid clearing ocf related files on future make clean.
|
|
|
|
./configure $config_params
|
|
|
|
}
|
2018-11-02 00:00:24 +00:00
|
|
|
|
2019-12-20 00:38:20 +00:00
|
|
|
function make_fail_cleanup {
|
|
|
|
if [ -d $out/scan-build-tmp ]; then
|
|
|
|
scanoutput=$(ls -1 $out/scan-build-tmp/)
|
|
|
|
mv $out/scan-build-tmp/$scanoutput $out/scan-build
|
|
|
|
rm -rf $out/scan-build-tmp
|
|
|
|
chmod -R a+rX $out/scan-build
|
|
|
|
fi
|
|
|
|
false
|
|
|
|
}
|
2018-03-19 20:29:11 +00:00
|
|
|
|
2020-01-09 19:33:52 +00:00
|
|
|
function scanbuild_make {
|
|
|
|
pass=true
|
|
|
|
$scanbuild $MAKE $MAKEFLAGS > $out/build_output.txt && rm -rf $out/scan-build-tmp || make_fail_cleanup
|
|
|
|
for ent in $(find app examples lib module -type f | grep -vF ".h"); do
|
|
|
|
if file -bi $ent | grep -q 'text/x-c'; then
|
|
|
|
echo $ent | sed 's/\.cp\{0,2\}$//g' >> $out/all_c_files.txt
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
sed -n '/Leaving directory /,$p' $out/build_output.txt | grep -E "CC|CXX" | sed 's/\s\s\(CC\|CXX\)\s//g' | sed 's/\.o//g' > $out/built_c_files.txt
|
|
|
|
paste -d '\n' $out/all_c_files.txt $out/built_c_files.txt $rootdir/test/common/skipped_build_files.txt | grep -vE "^test|lib/env_ocf|#" | sort | uniq -u > $out/unbuilt_c_files.txt
|
|
|
|
|
|
|
|
if [ $(wc -l < $out/unbuilt_c_files.txt) -ge 1 ]; then
|
|
|
|
echo "missing files"
|
|
|
|
cat $out/unbuilt_c_files.txt
|
|
|
|
pass=false
|
|
|
|
fi
|
|
|
|
|
|
|
|
$pass
|
|
|
|
}
|
|
|
|
|
2019-12-20 00:49:11 +00:00
|
|
|
function porcelain_check {
|
|
|
|
if [ $(git status --porcelain --ignore-submodules | wc -l) -ne 0 ]; then
|
|
|
|
echo "Generated files missing from .gitignore:"
|
|
|
|
git status --porcelain --ignore-submodules
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-12-20 00:52:48 +00:00
|
|
|
# Check that header file dependencies are working correctly by
|
|
|
|
# capturing a binary's stat data before and after touching a
|
|
|
|
# header file and re-making.
|
|
|
|
function header_dependency_check {
|
|
|
|
STAT1=$(stat examples/nvme/identify/identify)
|
|
|
|
sleep 1
|
|
|
|
touch lib/nvme/nvme_internal.h
|
|
|
|
$MAKE $MAKEFLAGS
|
|
|
|
STAT2=$(stat examples/nvme/identify/identify)
|
|
|
|
|
|
|
|
if [ "$STAT1" == "$STAT2" ]; then
|
|
|
|
echo "Header dependency check failed"
|
|
|
|
false
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-12-20 00:55:45 +00:00
|
|
|
function test_make_uninstall {
|
|
|
|
# Create empty file to check if it is not deleted by target uninstall
|
|
|
|
touch /tmp/spdk/usr/lib/sample_xyz.a
|
|
|
|
$MAKE $MAKEFLAGS uninstall DESTDIR=/tmp/spdk prefix=/usr
|
|
|
|
if [[ $(find /tmp/spdk/usr -maxdepth 1 -mindepth 1 | wc -l) -ne 2 ]] || [[ $(find /tmp/spdk/usr/lib/ -maxdepth 1 -mindepth 1 | wc -l) -ne 1 ]]; then
|
|
|
|
ls -lR /tmp/spdk
|
|
|
|
rm -rf /tmp/spdk
|
|
|
|
echo "Make uninstall failed"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
rm -rf /tmp/spdk
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-12-20 00:57:32 +00:00
|
|
|
function build_doc {
|
|
|
|
$MAKE -C "$rootdir"/doc --no-print-directory $MAKEFLAGS &> "$out"/doxygen.log
|
|
|
|
if [ -s "$out"/doxygen.log ]; then
|
|
|
|
cat "$out"/doxygen.log
|
|
|
|
echo "Doxygen errors found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if hash pdflatex 2>/dev/null; then
|
|
|
|
$MAKE -C "$rootdir"/doc/output/latex --no-print-directory $MAKEFLAGS &>> "$out"/doxygen.log
|
|
|
|
fi
|
|
|
|
mkdir -p "$out"/doc
|
|
|
|
mv "$rootdir"/doc/output/html "$out"/doc
|
|
|
|
if [ -f "$rootdir"/doc/output/latex/refman.pdf ]; then
|
|
|
|
mv "$rootdir"/doc/output/latex/refman.pdf "$out"/doc/spdk.pdf
|
|
|
|
fi
|
|
|
|
$MAKE -C "$rootdir"/doc --no-print-directory $MAKEFLAGS clean &>> "$out"/doxygen.log
|
|
|
|
if [ -s "$out"/doxygen.log ]; then
|
|
|
|
rm "$out"/doxygen.log
|
|
|
|
fi
|
|
|
|
rm -rf "$rootdir"/doc/output
|
|
|
|
}
|
|
|
|
|
2019-12-19 15:57:30 +00:00
|
|
|
function autobuild_test_suite {
|
|
|
|
run_test "autobuild_check_format" ./scripts/check_format.sh
|
|
|
|
run_test "autobuild_check_so_deps" $rootdir/test/make/check_so_deps.sh
|
2020-01-09 19:33:52 +00:00
|
|
|
run_test "scanbuild_make" scanbuild_make
|
2019-12-19 15:57:30 +00:00
|
|
|
run_test "autobuild_generated_files_check" porcelain_check
|
|
|
|
run_test "autobuild_header_dependency_check" header_dependency_check
|
|
|
|
run_test "autobuild_make_install" $MAKE $MAKEFLAGS install DESTDIR=/tmp/spdk prefix=/usr
|
|
|
|
run_test "autobuild_make_uninstall" test_make_uninstall
|
|
|
|
run_test "autobuild_build_doc" build_doc
|
|
|
|
}
|
|
|
|
|
2019-12-20 00:27:04 +00:00
|
|
|
if [ $SPDK_RUN_VALGRIND -eq 1 ]; then
|
|
|
|
run_test "valgrind" echo "using valgrind"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $SPDK_RUN_ASAN -eq 1 ]; then
|
|
|
|
run_test "asan" echo "using asan"
|
|
|
|
fi
|
2015-10-08 19:40:44 +00:00
|
|
|
|
2019-12-20 00:27:04 +00:00
|
|
|
if [ $SPDK_RUN_UBSAN -eq 1 ]; then
|
|
|
|
run_test "ubsan" echo "using ubsan"
|
|
|
|
fi
|
|
|
|
|
2019-12-20 00:29:52 +00:00
|
|
|
if [ "$SPDK_TEST_OCF" -eq 1 ]; then
|
|
|
|
run_test "autobuild_ocf_precompile" ocf_precompile
|
|
|
|
fi
|
|
|
|
|
2019-12-19 15:57:30 +00:00
|
|
|
if [ "$SPDK_TEST_AUTOBUILD" -eq 1 ]; then
|
|
|
|
run_test "autobuild" autobuild_test_suite
|
2017-02-15 20:16:48 +00:00
|
|
|
else
|
2019-12-20 00:38:20 +00:00
|
|
|
run_test "make" $MAKE $MAKEFLAGS
|
2017-02-15 20:16:48 +00:00
|
|
|
fi
|