2014-03-19 18:29:01 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Run all available tests (mostly).
|
|
|
|
#
|
|
|
|
# Warning: includes various build modes, so it will mess with the current
|
|
|
|
# CMake configuration. After this script is run, the CMake cache is lost and
|
|
|
|
# CMake is not initialised any more!
|
2014-03-27 14:44:04 +01:00
|
|
|
#
|
2014-06-09 11:21:49 +02:00
|
|
|
# Assumes gcc and clang (recent enough for using ASan) are available,
|
|
|
|
# as well as cmake and valgrind.
|
2014-03-19 18:29:01 +01:00
|
|
|
|
|
|
|
# Abort on errors (and uninitiliased variables)
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
if [ -d library -a -d include -a -d tests ]; then :; else
|
|
|
|
echo "Must be run from PolarSSL root" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
MEMORY=0
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
2014-05-09 13:46:59 +02:00
|
|
|
-m1)
|
2014-03-19 18:29:01 +01:00
|
|
|
MEMORY=1
|
|
|
|
;;
|
2014-05-09 13:46:59 +02:00
|
|
|
-m2)
|
|
|
|
MEMORY=2
|
|
|
|
;;
|
2014-03-19 18:29:01 +01:00
|
|
|
*)
|
|
|
|
echo "Unknown argument: '$1'" >&2
|
|
|
|
echo "Use the source, Luke!" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
# remove built files as well as the cmake cache/config
|
|
|
|
cleanup()
|
|
|
|
{
|
|
|
|
make clean
|
|
|
|
find -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+
|
2014-03-25 13:23:04 +01:00
|
|
|
rm -f include/Makefile include/polarssl/Makefile programs/*/Makefile
|
|
|
|
git update-index --no-skip-worktree {.,library,programs,tests}/Makefile
|
2014-03-19 18:29:01 +01:00
|
|
|
git checkout -- {.,library,programs,tests}/Makefile
|
|
|
|
}
|
|
|
|
|
2014-03-27 14:44:04 +01:00
|
|
|
msg()
|
|
|
|
{
|
|
|
|
echo ""
|
|
|
|
echo "******************************************************************"
|
|
|
|
echo "* $1"
|
|
|
|
echo "******************************************************************"
|
|
|
|
}
|
2014-03-19 18:29:01 +01:00
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
# The test ordering tries to optimize for the following criteria:
|
|
|
|
# 1. Catch possible problems early, by running first test that run quickly
|
|
|
|
# and/or are more likely to fail than others.
|
|
|
|
# 2. Minimize total running time, by avoiding useless rebuilds
|
|
|
|
#
|
|
|
|
# Indicative running times are given for reference.
|
2014-03-27 14:44:04 +01:00
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
msg "build: cmake, gcc with lots of warnings" # ~ 1 min
|
2014-03-27 14:44:04 +01:00
|
|
|
cleanup
|
|
|
|
CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Check .
|
|
|
|
make
|
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
msg "test: main suites with valgrind" # ~ 2 min 10s
|
|
|
|
make memcheck
|
2014-03-19 18:29:01 +01:00
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
msg "build: with ASan" # ~ 1 min
|
2014-03-19 18:29:01 +01:00
|
|
|
cleanup
|
2014-03-27 14:44:04 +01:00
|
|
|
cmake -D CMAKE_BUILD_TYPE:String=ASan .
|
2014-03-19 18:29:01 +01:00
|
|
|
make
|
2014-06-09 11:21:49 +02:00
|
|
|
|
|
|
|
msg "test: ssl-opt.sh (ASan build)" # ~ 1 min 10s
|
|
|
|
cd tests
|
|
|
|
./ssl-opt.sh
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
msg "test: main suites and selftest (ASan build)" # ~ 10s + 30s
|
2014-03-27 14:44:04 +01:00
|
|
|
make test
|
2014-03-27 20:16:07 +01:00
|
|
|
programs/test/selftest
|
2014-06-09 11:21:49 +02:00
|
|
|
|
|
|
|
msg "test: ref-configs (ASan build)" # ~ 4 min 45 s
|
|
|
|
tests/scripts/test-ref-configs.pl
|
|
|
|
|
|
|
|
# Most issues are likely to be caught at this point
|
|
|
|
|
|
|
|
msg "build: with ASan (rebuild after ref-configs)" # ~ 1 min
|
|
|
|
make
|
|
|
|
|
|
|
|
msg "test: compat.sh (ASan build)" # ~ 7 min 30s
|
2014-03-19 18:29:01 +01:00
|
|
|
cd tests
|
|
|
|
./compat.sh
|
|
|
|
cd ..
|
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
msg "build: cmake, clang with lots of warnings" # ~ 40s
|
|
|
|
cleanup
|
|
|
|
CC=clang cmake -D CMAKE_BUILD_TYPE:String=Check .
|
|
|
|
make
|
2014-03-19 18:29:01 +01:00
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
msg "build: Unix make, -O2" # ~ 30s
|
2014-05-09 13:46:59 +02:00
|
|
|
cleanup
|
|
|
|
make
|
2014-06-09 11:21:49 +02:00
|
|
|
|
|
|
|
# Optional parts that take a long time to run
|
2014-05-09 13:46:59 +02:00
|
|
|
|
|
|
|
if [ "$MEMORY" -gt 0 ]; then
|
2014-06-09 11:21:49 +02:00
|
|
|
msg "test: ssl-opt --memcheck (-02 build)" # ~ 8 min
|
2014-03-19 18:29:01 +01:00
|
|
|
cd tests
|
|
|
|
./ssl-opt.sh --memcheck
|
|
|
|
cd ..
|
|
|
|
|
2014-06-09 11:21:49 +02:00
|
|
|
if [ "$MEMORY" -gt 1 ]; then
|
|
|
|
msg "test: compat --memcheck (-02 build)" # ~ 42 min
|
|
|
|
cd tests
|
|
|
|
./compat.sh --memcheck
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
fi
|
2014-03-19 18:29:01 +01:00
|
|
|
|
2014-03-27 14:44:04 +01:00
|
|
|
echo "Done."
|
2014-03-19 18:29:01 +01:00
|
|
|
cleanup
|
|
|
|
|