mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-05-12 07:32:18 +00:00
Merge pull request #4803 from gilles-peskine-arm/save-coverage-summary-2.x
Backport 2.2x: Save the basic-build-test.sh test report summary to coverage-summary.txt
This commit is contained in:
commit
b0f45d7aad
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -18,6 +18,7 @@ Testing
|
||||||
Coverage
|
Coverage
|
||||||
*.gcno
|
*.gcno
|
||||||
*.gcda
|
*.gcda
|
||||||
|
coverage-summary.txt
|
||||||
|
|
||||||
# generated by scripts/memory.sh
|
# generated by scripts/memory.sh
|
||||||
massif-*
|
massif-*
|
||||||
|
|
|
@ -62,6 +62,11 @@ fi
|
||||||
: ${SEED:=1}
|
: ${SEED:=1}
|
||||||
export SEED
|
export SEED
|
||||||
|
|
||||||
|
# if MAKEFLAGS is not set add the -j option to speed up invocations of make
|
||||||
|
if [ -z "${MAKEFLAGS+set}" ]; then
|
||||||
|
export MAKEFLAGS="-j"
|
||||||
|
fi
|
||||||
|
|
||||||
# To avoid setting OpenSSL and GnuTLS for each call to compat.sh and ssl-opt.sh
|
# To avoid setting OpenSSL and GnuTLS for each call to compat.sh and ssl-opt.sh
|
||||||
# we just export the variables they require
|
# we just export the variables they require
|
||||||
export OPENSSL_CMD="$OPENSSL"
|
export OPENSSL_CMD="$OPENSSL"
|
||||||
|
@ -87,7 +92,7 @@ export LDFLAGS=' --coverage'
|
||||||
make clean
|
make clean
|
||||||
cp "$CONFIG_H" "$CONFIG_BAK"
|
cp "$CONFIG_H" "$CONFIG_BAK"
|
||||||
scripts/config.py full
|
scripts/config.py full
|
||||||
make -j
|
make
|
||||||
|
|
||||||
|
|
||||||
# Step 2 - Execute the tests
|
# Step 2 - Execute the tests
|
||||||
|
@ -107,6 +112,7 @@ echo
|
||||||
# Step 2b - System Tests (keep going even if some tests fail)
|
# Step 2b - System Tests (keep going even if some tests fail)
|
||||||
echo
|
echo
|
||||||
echo '################ ssl-opt.sh ################'
|
echo '################ ssl-opt.sh ################'
|
||||||
|
echo "ssl-opt.sh will use SEED=$SEED for udp_proxy"
|
||||||
sh ssl-opt.sh |tee sys-test-$TEST_OUTPUT
|
sh ssl-opt.sh |tee sys-test-$TEST_OUTPUT
|
||||||
echo '^^^^^^^^^^^^^^^^ ssl-opt.sh ^^^^^^^^^^^^^^^^'
|
echo '^^^^^^^^^^^^^^^^ ssl-opt.sh ^^^^^^^^^^^^^^^^'
|
||||||
echo
|
echo
|
||||||
|
@ -154,6 +160,13 @@ echo "========================================================================="
|
||||||
echo "Test Report Summary"
|
echo "Test Report Summary"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
# A failure of the left-hand side of a pipe is ignored (this is a limitation
|
||||||
|
# of sh). We'll use the presence of this file as a marker that the generation
|
||||||
|
# of the report succeeded.
|
||||||
|
rm -f "tests/basic-build-test-$$.ok"
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
cd tests
|
cd tests
|
||||||
|
|
||||||
# Step 4a - Unit tests
|
# Step 4a - Unit tests
|
||||||
|
@ -253,17 +266,20 @@ FUNCS_PERCENT="$(($FUNCS_PERCENT/10)).$(($FUNCS_PERCENT-($FUNCS_PERCENT/10)*10))
|
||||||
BRANCHES_PERCENT=$((1000*$BRANCHES_TESTED/$BRANCHES_TOTAL))
|
BRANCHES_PERCENT=$((1000*$BRANCHES_TESTED/$BRANCHES_TOTAL))
|
||||||
BRANCHES_PERCENT="$(($BRANCHES_PERCENT/10)).$(($BRANCHES_PERCENT-($BRANCHES_PERCENT/10)*10))"
|
BRANCHES_PERCENT="$(($BRANCHES_PERCENT/10)).$(($BRANCHES_PERCENT-($BRANCHES_PERCENT/10)*10))"
|
||||||
|
|
||||||
echo "Lines Tested : $LINES_TESTED of $LINES_TOTAL $LINES_PERCENT%"
|
|
||||||
echo "Functions Tested : $FUNCS_TESTED of $FUNCS_TOTAL $FUNCS_PERCENT%"
|
|
||||||
echo "Branches Tested : $BRANCHES_TESTED of $BRANCHES_TOTAL $BRANCHES_PERCENT%"
|
|
||||||
echo
|
|
||||||
|
|
||||||
rm unit-test-$TEST_OUTPUT
|
rm unit-test-$TEST_OUTPUT
|
||||||
rm sys-test-$TEST_OUTPUT
|
rm sys-test-$TEST_OUTPUT
|
||||||
rm compat-test-$TEST_OUTPUT
|
rm compat-test-$TEST_OUTPUT
|
||||||
rm cov-$TEST_OUTPUT
|
rm cov-$TEST_OUTPUT
|
||||||
|
|
||||||
cd ..
|
echo "Lines Tested : $LINES_TESTED of $LINES_TOTAL $LINES_PERCENT%"
|
||||||
|
echo "Functions Tested : $FUNCS_TESTED of $FUNCS_TOTAL $FUNCS_PERCENT%"
|
||||||
|
echo "Branches Tested : $BRANCHES_TESTED of $BRANCHES_TOTAL $BRANCHES_PERCENT%"
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Mark the report generation as having succeeded. This must be the
|
||||||
|
# last thing in the report generation.
|
||||||
|
touch "basic-build-test-$$.ok"
|
||||||
|
} | tee coverage-summary.txt
|
||||||
|
|
||||||
make clean
|
make clean
|
||||||
|
|
||||||
|
@ -271,6 +287,7 @@ if [ -f "$CONFIG_BAK" ]; then
|
||||||
mv "$CONFIG_BAK" "$CONFIG_H"
|
mv "$CONFIG_BAK" "$CONFIG_H"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $TOTAL_FAIL -ne 0 ]; then
|
# The file must exist, otherwise it means something went wrong while generating
|
||||||
exit 1
|
# the coverage report. If something did go wrong, rm will complain so this
|
||||||
fi
|
# script will exit with a failure status.
|
||||||
|
rm "tests/basic-build-test-$$.ok"
|
||||||
|
|
Loading…
Reference in a new issue