SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Tom Cosgrove | fc2ac75 | 2022-11-30 11:13:00 +0000 | [diff] [blame] | 3 | # basic-build-test.sh |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 4 | # |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 5 | # Copyright The Mbed TLS Contributors |
Bence Szépkúti | c7da1fe | 2020-05-26 01:54:15 +0200 | [diff] [blame] | 6 | # SPDX-License-Identifier: Apache-2.0 |
| 7 | # |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 9 | # not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 16 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 20 | # Purpose |
| 21 | # |
| 22 | # Executes the basic test suites, captures the results, and generates a simple |
| 23 | # test report and code coverage report. |
| 24 | # |
| 25 | # The tests include: |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 26 | # * Unit tests - executed using tests/scripts/run-test-suite.pl |
Paul Bakker | 4b8bc52 | 2016-07-20 09:52:01 +0100 | [diff] [blame] | 27 | # * Self-tests - executed using the test suites above |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 28 | # * System tests - executed using tests/ssl-opt.sh |
| 29 | # * Interoperability tests - executed using tests/compat.sh |
| 30 | # |
| 31 | # The tests focus on functionality and do not consider performance. |
| 32 | # |
Bence Szépkúti | bb0cfeb | 2021-05-28 09:42:25 +0200 | [diff] [blame] | 33 | # Note the tests self-adapt due to configurations in include/mbedtls/mbedtls_config.h |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 34 | # which can lead to some tests being skipped, and can cause the number of |
Paul Bakker | 4b8bc52 | 2016-07-20 09:52:01 +0100 | [diff] [blame] | 35 | # available tests to fluctuate. |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 36 | # |
| 37 | # This script has been written to be generic and should work on any shell. |
| 38 | # |
Tom Cosgrove | fc2ac75 | 2022-11-30 11:13:00 +0000 | [diff] [blame] | 39 | # Usage: basic-build-test.sh |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 40 | # |
| 41 | |
| 42 | # Abort on errors (and uninitiliased variables) |
| 43 | set -eu |
| 44 | |
| 45 | if [ -d library -a -d include -a -d tests ]; then :; else |
Gilles Peskine | e820c0a | 2023-08-03 17:45:20 +0200 | [diff] [blame] | 46 | echo "Must be run from Mbed TLS root" >&2 |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 47 | exit 1 |
| 48 | fi |
| 49 | |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 50 | : ${OPENSSL:="openssl"} |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 51 | : ${GNUTLS_CLI:="gnutls-cli"} |
| 52 | : ${GNUTLS_SERV:="gnutls-serv"} |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 53 | |
Manuel Pégourié-Gonnard | e050191 | 2020-06-08 12:59:27 +0200 | [diff] [blame] | 54 | # Used to make ssl-opt.sh deterministic. |
Manuel Pégourié-Gonnard | 5430447 | 2020-06-22 10:11:47 +0200 | [diff] [blame] | 55 | # |
| 56 | # See also RELEASE_SEED in all.sh. Debugging is easier if both values are kept |
| 57 | # in sync. If you change the value here because it breaks some tests, you'll |
| 58 | # definitely want to change it in all.sh as well. |
Manuel Pégourié-Gonnard | e050191 | 2020-06-08 12:59:27 +0200 | [diff] [blame] | 59 | : ${SEED:=1} |
| 60 | export SEED |
| 61 | |
Gilles Peskine | a3d2264 | 2021-07-13 23:23:23 +0200 | [diff] [blame] | 62 | # if MAKEFLAGS is not set add the -j option to speed up invocations of make |
| 63 | if [ -z "${MAKEFLAGS+set}" ]; then |
| 64 | export MAKEFLAGS="-j" |
| 65 | fi |
| 66 | |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 67 | # To avoid setting OpenSSL and GnuTLS for each call to compat.sh and ssl-opt.sh |
| 68 | # we just export the variables they require |
Manuel Pégourié-Gonnard | c572246 | 2022-12-19 11:42:12 +0100 | [diff] [blame] | 69 | export OPENSSL="$OPENSSL" |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 70 | export GNUTLS_CLI="$GNUTLS_CLI" |
| 71 | export GNUTLS_SERV="$GNUTLS_SERV" |
| 72 | |
Bence Szépkúti | bb0cfeb | 2021-05-28 09:42:25 +0200 | [diff] [blame] | 73 | CONFIG_H='include/mbedtls/mbedtls_config.h' |
Janos Follath | 7ccac85 | 2016-06-06 13:18:39 +0100 | [diff] [blame] | 74 | CONFIG_BAK="$CONFIG_H.bak" |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 75 | |
Janos Follath | b72c678 | 2016-07-19 14:54:17 +0100 | [diff] [blame] | 76 | # Step 0 - print build environment info |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 77 | OPENSSL="$OPENSSL" \ |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 78 | GNUTLS_CLI="$GNUTLS_CLI" \ |
| 79 | GNUTLS_SERV="$GNUTLS_SERV" \ |
Andres AG | b2fdd04 | 2016-09-22 14:17:46 +0100 | [diff] [blame] | 80 | scripts/output_env.sh |
Janos Follath | b72c678 | 2016-07-19 14:54:17 +0100 | [diff] [blame] | 81 | echo |
| 82 | |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 83 | # Step 1 - Make and instrumented build for code coverage |
Simon Butcher | c2b0efc | 2016-03-18 18:28:43 +0000 | [diff] [blame] | 84 | export CFLAGS=' --coverage -g3 -O0 ' |
Philippe Antoine | 702c659 | 2019-07-09 17:44:53 +0200 | [diff] [blame] | 85 | export LDFLAGS=' --coverage' |
SimonB | 098a3b5 | 2016-04-16 21:56:59 +0100 | [diff] [blame] | 86 | make clean |
Janos Follath | 7ccac85 | 2016-06-06 13:18:39 +0100 | [diff] [blame] | 87 | cp "$CONFIG_H" "$CONFIG_BAK" |
Gilles Peskine | 5d46f6a | 2019-07-27 23:52:53 +0200 | [diff] [blame] | 88 | scripts/config.py full |
Gilles Peskine | a3d2264 | 2021-07-13 23:23:23 +0200 | [diff] [blame] | 89 | make |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 90 | |
| 91 | |
| 92 | # Step 2 - Execute the tests |
| 93 | TEST_OUTPUT=out_${PPID} |
| 94 | cd tests |
Gilles Peskine | 3c8ccc0 | 2019-05-20 11:39:18 +0200 | [diff] [blame] | 95 | if [ ! -f "seedfile" ]; then |
Gilles Peskine | bfcb6e1 | 2020-04-09 18:33:34 +0200 | [diff] [blame] | 96 | dd if=/dev/urandom of="seedfile" bs=64 count=1 |
Gilles Peskine | 3c8ccc0 | 2019-05-20 11:39:18 +0200 | [diff] [blame] | 97 | fi |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 98 | echo |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 99 | |
Gilles Peskine | ca51b47 | 2020-04-09 18:29:42 +0200 | [diff] [blame] | 100 | # Step 2a - Unit Tests (keep going even if some tests fail) |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 101 | echo '################ Unit tests ################' |
Jaeden Amero | 60ca6e5 | 2018-12-07 13:06:24 +0000 | [diff] [blame] | 102 | perl scripts/run-test-suites.pl -v 2 |tee unit-test-$TEST_OUTPUT |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 103 | echo '^^^^^^^^^^^^^^^^ Unit tests ^^^^^^^^^^^^^^^^' |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 104 | echo |
| 105 | |
Gilles Peskine | ca51b47 | 2020-04-09 18:29:42 +0200 | [diff] [blame] | 106 | # Step 2b - System Tests (keep going even if some tests fail) |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 107 | echo |
| 108 | echo '################ ssl-opt.sh ################' |
Gilles Peskine | bbced87 | 2021-07-13 23:26:00 +0200 | [diff] [blame] | 109 | echo "ssl-opt.sh will use SEED=$SEED for udp_proxy" |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 110 | sh ssl-opt.sh |tee sys-test-$TEST_OUTPUT |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 111 | echo '^^^^^^^^^^^^^^^^ ssl-opt.sh ^^^^^^^^^^^^^^^^' |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 112 | echo |
| 113 | |
Gilles Peskine | ca51b47 | 2020-04-09 18:29:42 +0200 | [diff] [blame] | 114 | # Step 2c - Compatibility tests (keep going even if some tests fail) |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 115 | echo '################ compat.sh ################' |
| 116 | { |
| 117 | echo '#### compat.sh: Default versions' |
Manuel Pégourié-Gonnard | 9473229 | 2022-04-14 09:12:10 +0200 | [diff] [blame] | 118 | sh compat.sh |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 119 | echo |
| 120 | |
Gilles Peskine | e29203b | 2023-08-27 21:43:00 +0200 | [diff] [blame] | 121 | echo '#### compat.sh: null cipher' |
Manuel Pégourié-Gonnard | 296787f | 2022-04-06 13:28:27 +0200 | [diff] [blame] | 122 | sh compat.sh -e '^$' -f 'NULL' |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 123 | echo |
| 124 | |
| 125 | echo '#### compat.sh: next (ARIA, ChaCha)' |
Manuel Pégourié-Gonnard | c572246 | 2022-12-19 11:42:12 +0100 | [diff] [blame] | 126 | OPENSSL="$OPENSSL_NEXT" sh compat.sh -e '^$' -f 'ARIA\|CHACHA' |
Gilles Peskine | 40be51f | 2020-04-09 18:50:08 +0200 | [diff] [blame] | 127 | echo |
| 128 | } | tee compat-test-$TEST_OUTPUT |
| 129 | echo '^^^^^^^^^^^^^^^^ compat.sh ^^^^^^^^^^^^^^^^' |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 130 | echo |
| 131 | |
| 132 | # Step 3 - Process the coverage report |
| 133 | cd .. |
Gilles Peskine | 5757d54 | 2020-04-09 18:32:48 +0200 | [diff] [blame] | 134 | { |
| 135 | make lcov |
| 136 | echo SUCCESS |
| 137 | } | tee tests/cov-$TEST_OUTPUT |
| 138 | |
| 139 | if [ "$(tail -n1 tests/cov-$TEST_OUTPUT)" != "SUCCESS" ]; then |
| 140 | echo >&2 "Fatal: 'make lcov' failed" |
| 141 | exit 2 |
| 142 | fi |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 143 | |
| 144 | |
| 145 | # Step 4 - Summarise the test report |
| 146 | echo |
| 147 | echo "=========================================================================" |
| 148 | echo "Test Report Summary" |
| 149 | echo |
| 150 | |
Gilles Peskine | 6ee3b7e | 2021-07-22 11:08:30 +0200 | [diff] [blame] | 151 | # A failure of the left-hand side of a pipe is ignored (this is a limitation |
| 152 | # of sh). We'll use the presence of this file as a marker that the generation |
| 153 | # of the report succeeded. |
Gilles Peskine | d8d1932 | 2021-07-22 12:29:27 +0200 | [diff] [blame] | 154 | rm -f "tests/basic-build-test-$$.ok" |
Gilles Peskine | 6ee3b7e | 2021-07-22 11:08:30 +0200 | [diff] [blame] | 155 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 156 | { |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 157 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 158 | cd tests |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 159 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 160 | # Step 4a - Unit tests |
| 161 | echo "Unit tests - tests/scripts/run-test-suites.pl" |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 162 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 163 | PASSED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/test cases passed :[\t]*\([0-9]*\)/\1/p'| tr -d ' ') |
| 164 | SKIPPED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/skipped :[ \t]*\([0-9]*\)/\1/p'| tr -d ' ') |
| 165 | TOTAL_SUITES=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) .*, [0-9]* tests run)/\1/p'| tr -d ' ') |
| 166 | FAILED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/failed :[\t]*\([0-9]*\)/\1/p' |tr -d ' ') |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 167 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 168 | echo "No test suites : $TOTAL_SUITES" |
| 169 | echo "Passed : $PASSED_TESTS" |
| 170 | echo "Failed : $FAILED_TESTS" |
| 171 | echo "Skipped : $SKIPPED_TESTS" |
| 172 | echo "Total exec'd tests : $(($PASSED_TESTS + $FAILED_TESTS))" |
| 173 | echo "Total avail tests : $(($PASSED_TESTS + $FAILED_TESTS + $SKIPPED_TESTS))" |
| 174 | echo |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 175 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 176 | TOTAL_PASS=$PASSED_TESTS |
| 177 | TOTAL_FAIL=$FAILED_TESTS |
| 178 | TOTAL_SKIP=$SKIPPED_TESTS |
| 179 | TOTAL_AVAIL=$(($PASSED_TESTS + $FAILED_TESTS + $SKIPPED_TESTS)) |
| 180 | TOTAL_EXED=$(($PASSED_TESTS + $FAILED_TESTS)) |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 181 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 182 | # Step 4b - TLS Options tests |
| 183 | echo "TLS Options tests - tests/ssl-opt.sh" |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 184 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 185 | PASSED_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) \/ [0-9]* tests ([0-9]* skipped))$/\1/p') |
| 186 | SKIPPED_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* ([0-9]* \/ [0-9]* tests (\([0-9]*\) skipped))$/\1/p') |
| 187 | TOTAL_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* ([0-9]* \/ \([0-9]*\) tests ([0-9]* skipped))$/\1/p') |
| 188 | FAILED_TESTS=$(($TOTAL_TESTS - $PASSED_TESTS)) |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 189 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 190 | echo "Passed : $PASSED_TESTS" |
| 191 | echo "Failed : $FAILED_TESTS" |
| 192 | echo "Skipped : $SKIPPED_TESTS" |
| 193 | echo "Total exec'd tests : $TOTAL_TESTS" |
| 194 | echo "Total avail tests : $(($TOTAL_TESTS + $SKIPPED_TESTS))" |
| 195 | echo |
| 196 | |
| 197 | TOTAL_PASS=$(($TOTAL_PASS+$PASSED_TESTS)) |
| 198 | TOTAL_FAIL=$(($TOTAL_FAIL+$FAILED_TESTS)) |
| 199 | TOTAL_SKIP=$(($TOTAL_SKIP+$SKIPPED_TESTS)) |
| 200 | TOTAL_AVAIL=$(($TOTAL_AVAIL + $TOTAL_TESTS + $SKIPPED_TESTS)) |
| 201 | TOTAL_EXED=$(($TOTAL_EXED + $TOTAL_TESTS)) |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 202 | |
| 203 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 204 | # Step 4c - System Compatibility tests |
| 205 | echo "System/Compatibility tests - tests/compat.sh" |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 206 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 207 | PASSED_TESTS=$(cat compat-test-$TEST_OUTPUT | sed -n -e 's/.* (\([0-9]*\) \/ [0-9]* tests ([0-9]* skipped))$/\1/p' | awk 'BEGIN{ s = 0 } { s += $1 } END{ print s }') |
| 208 | SKIPPED_TESTS=$(cat compat-test-$TEST_OUTPUT | sed -n -e 's/.* ([0-9]* \/ [0-9]* tests (\([0-9]*\) skipped))$/\1/p' | awk 'BEGIN{ s = 0 } { s += $1 } END{ print s }') |
| 209 | EXED_TESTS=$(cat compat-test-$TEST_OUTPUT | sed -n -e 's/.* ([0-9]* \/ \([0-9]*\) tests ([0-9]* skipped))$/\1/p' | awk 'BEGIN{ s = 0 } { s += $1 } END{ print s }') |
| 210 | FAILED_TESTS=$(($EXED_TESTS - $PASSED_TESTS)) |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 211 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 212 | echo "Passed : $PASSED_TESTS" |
| 213 | echo "Failed : $FAILED_TESTS" |
| 214 | echo "Skipped : $SKIPPED_TESTS" |
| 215 | echo "Total exec'd tests : $EXED_TESTS" |
| 216 | echo "Total avail tests : $(($EXED_TESTS + $SKIPPED_TESTS))" |
| 217 | echo |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 218 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 219 | TOTAL_PASS=$(($TOTAL_PASS+$PASSED_TESTS)) |
| 220 | TOTAL_FAIL=$(($TOTAL_FAIL+$FAILED_TESTS)) |
| 221 | TOTAL_SKIP=$(($TOTAL_SKIP+$SKIPPED_TESTS)) |
| 222 | TOTAL_AVAIL=$(($TOTAL_AVAIL + $EXED_TESTS + $SKIPPED_TESTS)) |
| 223 | TOTAL_EXED=$(($TOTAL_EXED + $EXED_TESTS)) |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 224 | |
| 225 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 226 | # Step 4d - Grand totals |
| 227 | echo "-------------------------------------------------------------------------" |
| 228 | echo "Total tests" |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 229 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 230 | echo "Total Passed : $TOTAL_PASS" |
| 231 | echo "Total Failed : $TOTAL_FAIL" |
| 232 | echo "Total Skipped : $TOTAL_SKIP" |
| 233 | echo "Total exec'd tests : $TOTAL_EXED" |
| 234 | echo "Total avail tests : $TOTAL_AVAIL" |
| 235 | echo |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 236 | |
| 237 | |
Gilles Peskine | 98d3a67 | 2022-12-16 12:03:39 +0100 | [diff] [blame] | 238 | # Step 4e - Coverage report |
| 239 | echo "Coverage statistics:" |
| 240 | sed -n '1,/^Overall coverage/d; /%/p' cov-$TEST_OUTPUT |
| 241 | echo |
Dan Handley | a8b26c2 | 2020-05-28 16:20:31 +0100 | [diff] [blame] | 242 | |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 243 | rm unit-test-$TEST_OUTPUT |
| 244 | rm sys-test-$TEST_OUTPUT |
| 245 | rm compat-test-$TEST_OUTPUT |
| 246 | rm cov-$TEST_OUTPUT |
SimonB | 21ab9d7 | 2016-03-12 20:37:32 +0000 | [diff] [blame] | 247 | |
Gilles Peskine | d8d1932 | 2021-07-22 12:29:27 +0200 | [diff] [blame] | 248 | # Mark the report generation as having succeeded. This must be the |
| 249 | # last thing in the report generation. |
Gilles Peskine | 6ee3b7e | 2021-07-22 11:08:30 +0200 | [diff] [blame] | 250 | touch "basic-build-test-$$.ok" |
Gilles Peskine | fc70b52 | 2021-07-13 23:27:01 +0200 | [diff] [blame] | 251 | } | tee coverage-summary.txt |
Janos Follath | 7ccac85 | 2016-06-06 13:18:39 +0100 | [diff] [blame] | 252 | |
| 253 | make clean |
| 254 | |
| 255 | if [ -f "$CONFIG_BAK" ]; then |
| 256 | mv "$CONFIG_BAK" "$CONFIG_H" |
| 257 | fi |
Gilles Peskine | 6d6ee98 | 2020-04-09 18:28:14 +0200 | [diff] [blame] | 258 | |
Gilles Peskine | 6ee3b7e | 2021-07-22 11:08:30 +0200 | [diff] [blame] | 259 | # The file must exist, otherwise it means something went wrong while generating |
| 260 | # the coverage report. If something did go wrong, rm will complain so this |
| 261 | # script will exit with a failure status. |
Gilles Peskine | d8d1932 | 2021-07-22 12:29:27 +0200 | [diff] [blame] | 262 | rm "tests/basic-build-test-$$.ok" |