Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # Run all available tests (mostly). |
| 4 | # |
| 5 | # Warning: includes various build modes, so it will mess with the current |
| 6 | # CMake configuration. After this script is run, the CMake cache is lost and |
| 7 | # CMake is not initialised any more! |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 8 | # |
Manuel Pégourié-Gonnard | 392d3dd | 2015-01-26 14:03:56 +0000 | [diff] [blame] | 9 | # Assumes gcc and clang (recent enough for using ASan with gcc and MemSan with |
| 10 | # clang, or valgrind) are available, as well as cmake and a "good" find. |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 11 | |
| 12 | # Abort on errors (and uninitiliased variables) |
| 13 | set -eu |
| 14 | |
| 15 | if [ -d library -a -d include -a -d tests ]; then :; else |
Manuel Pégourié-Gonnard | e4f6edc | 2015-01-22 16:43:54 +0000 | [diff] [blame] | 16 | echo "Must be run from mbed TLS root" >&2 |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 17 | exit 1 |
| 18 | fi |
| 19 | |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 20 | CONFIG_H='include/polarssl/config.h' |
| 21 | CONFIG_BAK="$CONFIG_H.bak" |
| 22 | |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 23 | MEMORY=0 |
| 24 | |
| 25 | while [ $# -gt 0 ]; do |
| 26 | case "$1" in |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 27 | -m*) |
Manuel Pégourié-Gonnard | 392d3dd | 2015-01-26 14:03:56 +0000 | [diff] [blame] | 28 | MEMORY=${1#-m} |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 29 | ;; |
| 30 | *) |
| 31 | echo "Unknown argument: '$1'" >&2 |
| 32 | echo "Use the source, Luke!" >&2 |
| 33 | exit 1 |
| 34 | ;; |
| 35 | esac |
| 36 | shift |
| 37 | done |
| 38 | |
| 39 | # remove built files as well as the cmake cache/config |
| 40 | cleanup() |
| 41 | { |
| 42 | make clean |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 43 | |
Manuel Pégourié-Gonnard | 76c99a0 | 2014-12-11 10:33:43 +0100 | [diff] [blame] | 44 | find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+ |
Manuel Pégourié-Gonnard | 897a595 | 2014-03-25 13:23:04 +0100 | [diff] [blame] | 45 | rm -f include/Makefile include/polarssl/Makefile programs/*/Makefile |
Paul Bakker | fe0984d | 2014-06-13 00:13:45 +0200 | [diff] [blame] | 46 | git update-index --no-skip-worktree Makefile library/Makefile programs/Makefile tests/Makefile |
| 47 | git checkout -- Makefile library/Makefile programs/Makefile tests/Makefile |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 48 | |
| 49 | if [ -f "$CONFIG_BAK" ]; then |
| 50 | mv "$CONFIG_BAK" "$CONFIG_H" |
| 51 | fi |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 52 | } |
| 53 | |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 54 | trap cleanup INT TERM HUP |
| 55 | |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 56 | msg() |
| 57 | { |
| 58 | echo "" |
| 59 | echo "******************************************************************" |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 60 | echo "* $1 " |
Manuel Pégourié-Gonnard | 392d3dd | 2015-01-26 14:03:56 +0000 | [diff] [blame] | 61 | printf "* "; date |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 62 | echo "******************************************************************" |
| 63 | } |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 64 | |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 65 | # The test ordering tries to optimize for the following criteria: |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 66 | # 1. Catch possible problems early, by running first tests that run quickly |
Manuel Pégourié-Gonnard | 61bc57a | 2014-08-14 11:29:06 +0200 | [diff] [blame] | 67 | # and/or are more likely to fail than others (eg I use Clang most of the |
| 68 | # time, so start with a GCC build). |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 69 | # 2. Minimize total running time, by avoiding useless rebuilds |
| 70 | # |
| 71 | # Indicative running times are given for reference. |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 72 | |
Manuel Pégourié-Gonnard | ea29d15 | 2014-11-20 17:32:33 +0100 | [diff] [blame] | 73 | msg "test: recursion.pl" # < 1s |
| 74 | scripts/recursion.pl library/*.c |
| 75 | |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 76 | msg "test: freshness of generated source files" # < 1s |
| 77 | tests/scripts/check-generated-files.sh |
| 78 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 79 | msg "build: cmake, gcc, ASan" # ~ 1 min 50s |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 80 | cleanup |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 81 | CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan . |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 82 | make |
| 83 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 84 | msg "test: main suites and selftest (ASan build)" # ~ 50s |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 85 | make test |
| 86 | programs/test/selftest |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 87 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 88 | msg "test: ssl-opt.sh (ASan build)" # ~ 1 min |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 89 | cd tests |
| 90 | ./ssl-opt.sh |
| 91 | cd .. |
| 92 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 93 | msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 94 | tests/scripts/test-ref-configs.pl |
| 95 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 96 | # Most frequent issues are likely to be caught at this point |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 97 | |
| 98 | msg "build: with ASan (rebuild after ref-configs)" # ~ 1 min |
| 99 | make |
| 100 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 101 | msg "test: compat.sh (ASan build)" # ~ 6 min |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 102 | cd tests |
| 103 | ./compat.sh |
| 104 | cd .. |
| 105 | |
Janos Follath | 4dfecab | 2016-03-14 13:40:43 +0000 | [diff] [blame^] | 106 | msg "build: Default + SSLv3 (ASan build)" # ~ 6 min |
| 107 | cleanup |
| 108 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 109 | scripts/config.pl set POLARSSL_SSL_PROTO_SSL3 |
| 110 | CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan . |
| 111 | make |
| 112 | |
| 113 | msg "test: SSLv3 - main suites and selftest (ASan build)" # ~ 50s |
| 114 | make test |
| 115 | programs/test/selftest |
| 116 | |
| 117 | msg "build: SSLv3 - compat.sh (ASan build)" # ~ 6 min |
| 118 | cd tests |
| 119 | ./compat.sh -m 'ssl3 tls1 tls1_1 tls1_2' |
| 120 | cd .. |
| 121 | |
| 122 | msg "build: SSLv3 - ssl-opt.sh (ASan build)" # ~ 6 min |
| 123 | cd tests |
| 124 | ./ssl-opt.sh |
| 125 | cd .. |
| 126 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 127 | msg "build: cmake, full config, clang" # ~ 50s |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 128 | cleanup |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 129 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 130 | scripts/config.pl full |
| 131 | scripts/config.pl unset POLARSSL_MEMORY_BACKTRACE # too slow for tests |
Manuel Pégourié-Gonnard | 4d9e36a | 2015-09-02 10:10:32 +0200 | [diff] [blame] | 132 | scripts/config.pl unset POLARSSL_ERROR_STRERROR_BC # deprecated |
| 133 | scripts/config.pl unset POLARSSL_PBKDF2_C # deprecated |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 134 | CC=clang cmake -D CMAKE_BUILD_TYPE:String=Check . |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 135 | make |
| 136 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 137 | msg "test: main suites (full config)" # ~ 5s |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 138 | make test |
| 139 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 140 | msg "test: ssl-opt.sh default (full config)" # ~ 1s |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 141 | cd tests |
| 142 | ./ssl-opt.sh -f Default |
| 143 | cd .. |
| 144 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 145 | msg "test: compat.sh DES & NULL (full config)" # ~ 2 min |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 146 | cd tests |
| 147 | ./compat.sh -e '^$' -f 'NULL\|3DES-EDE-CBC\|DES-CBC3' |
| 148 | cd .. |
| 149 | |
Manuel Pégourié-Gonnard | 246978d | 2014-11-20 13:29:53 +0100 | [diff] [blame] | 150 | msg "test/build: curves.pl (gcc)" # ~ 5 min (?) |
| 151 | cleanup |
| 152 | cmake -D CMAKE_BUILD_TYPE:String=Debug . |
| 153 | tests/scripts/curves.pl |
| 154 | |
Manuel Pégourié-Gonnard | 61fe8b0 | 2015-03-13 14:33:16 +0000 | [diff] [blame] | 155 | msg "build: Unix make, -Os (gcc)" # ~ 30s |
Manuel Pégourié-Gonnard | 3895f5a | 2014-03-27 14:44:04 +0100 | [diff] [blame] | 156 | cleanup |
Manuel Pégourié-Gonnard | 61fe8b0 | 2015-03-13 14:33:16 +0000 | [diff] [blame] | 157 | CC=gcc CFLAGS='-Werror -Os' make |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 158 | |
Manuel Pégourié-Gonnard | a71780e | 2015-02-13 13:56:55 +0000 | [diff] [blame] | 159 | # this is meant to cath missing #define polarssl_printf etc |
Manuel Pégourié-Gonnard | 981732b | 2015-02-17 15:46:45 +0000 | [diff] [blame] | 160 | # disable fsio to catch some more missing #include <stdio.h> |
Manuel Pégourié-Gonnard | 757ca00 | 2015-03-23 15:24:07 +0100 | [diff] [blame] | 161 | msg "build: full config except platform/fsio, make, gcc" # ~ 30s |
Manuel Pégourié-Gonnard | a71780e | 2015-02-13 13:56:55 +0000 | [diff] [blame] | 162 | cleanup |
| 163 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 164 | scripts/config.pl full |
| 165 | scripts/config.pl unset POLARSSL_PLATFORM_C |
Manuel Pégourié-Gonnard | 6ca4076 | 2015-02-13 15:57:35 +0000 | [diff] [blame] | 166 | scripts/config.pl unset POLARSSL_PLATFORM_MEMORY |
Manuel Pégourié-Gonnard | 721e6bb | 2015-06-03 13:38:20 +0100 | [diff] [blame] | 167 | scripts/config.pl unset POLARSSL_PLATFORM_PRINTF_ALT |
| 168 | scripts/config.pl unset POLARSSL_PLATFORM_FPRINTF_ALT |
| 169 | scripts/config.pl unset POLARSSL_PLATFORM_SNPRINTF_ALT |
| 170 | scripts/config.pl unset POLARSSL_PLATFORM_EXIT_ALT |
Manuel Pégourié-Gonnard | a71780e | 2015-02-13 13:56:55 +0000 | [diff] [blame] | 171 | scripts/config.pl unset POLARSSL_MEMORY_C |
| 172 | scripts/config.pl unset POLARSSL_MEMORY_BUFFER_ALLOC_C |
Manuel Pégourié-Gonnard | 981732b | 2015-02-17 15:46:45 +0000 | [diff] [blame] | 173 | scripts/config.pl unset POLARSSL_FS_IO |
Manuel Pégourié-Gonnard | b0282ea | 2015-09-02 12:12:44 +0200 | [diff] [blame] | 174 | scripts/config.pl unset POLARSSL_ERROR_STRERROR_BC # deprecated |
| 175 | scripts/config.pl unset POLARSSL_PBKDF2_C # deprecated |
Manuel Pégourié-Gonnard | 61fe8b0 | 2015-03-13 14:33:16 +0000 | [diff] [blame] | 176 | CC=gcc CFLAGS='-Werror -O0' make |
Manuel Pégourié-Gonnard | a71780e | 2015-02-13 13:56:55 +0000 | [diff] [blame] | 177 | |
Manuel Pégourié-Gonnard | dccb80b | 2015-06-03 10:20:33 +0100 | [diff] [blame] | 178 | # catch compile bugs in _uninit functions |
| 179 | msg "build: full config with NO_STD_FUNCTION, make, gcc" # ~ 30s |
| 180 | cleanup |
| 181 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 182 | scripts/config.pl full |
| 183 | scripts/config.pl set POLARSSL_PLATFORM_NO_STD_FUNCTIONS |
Manuel Pégourié-Gonnard | b0282ea | 2015-09-02 12:12:44 +0200 | [diff] [blame] | 184 | scripts/config.pl unset POLARSSL_ERROR_STRERROR_BC # deprecated |
| 185 | scripts/config.pl unset POLARSSL_PBKDF2_C # deprecated |
Manuel Pégourié-Gonnard | dccb80b | 2015-06-03 10:20:33 +0100 | [diff] [blame] | 186 | CC=gcc CFLAGS='-Werror -O0' make |
| 187 | |
Manuel Pégourié-Gonnard | 1b1254f | 2015-08-10 11:56:06 +0200 | [diff] [blame] | 188 | if uname -a | grep -F Linux >/dev/null; then |
| 189 | msg "build/test: make shared" # ~ 40s |
| 190 | cleanup |
| 191 | make SHARED=1 all check |
| 192 | fi |
| 193 | |
Manuel Pégourié-Gonnard | edb2dc9 | 2015-02-10 14:36:31 +0000 | [diff] [blame] | 194 | if uname -a | grep -F x86_64 >/dev/null; then |
| 195 | msg "build: i386, make, gcc" # ~ 30s |
| 196 | cleanup |
| 197 | CC=gcc CFLAGS='-Werror -m32' make |
| 198 | fi # x86_64 |
| 199 | |
| 200 | if which arm-none-eabi-gcc >/dev/null; then |
| 201 | msg "build: arm-none-eabi-gcc, make" # ~ 10s |
| 202 | cleanup |
| 203 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 204 | scripts/config.pl full |
| 205 | scripts/config.pl unset POLARSSL_NET_C |
| 206 | scripts/config.pl unset POLARSSL_TIMING_C |
| 207 | scripts/config.pl unset POLARSSL_FS_IO |
Manuel Pégourié-Gonnard | b0282ea | 2015-09-02 12:12:44 +0200 | [diff] [blame] | 208 | scripts/config.pl unset POLARSSL_ERROR_STRERROR_BC # deprecated |
| 209 | scripts/config.pl unset POLARSSL_PBKDF2_C # deprecated |
Manuel Pégourié-Gonnard | edb2dc9 | 2015-02-10 14:36:31 +0000 | [diff] [blame] | 210 | # following things are not in the default config |
| 211 | scripts/config.pl unset POLARSSL_HAVEGE_C # depends on timing.c |
| 212 | scripts/config.pl unset POLARSSL_THREADING_PTHREAD |
| 213 | scripts/config.pl unset POLARSSL_THREADING_C |
| 214 | scripts/config.pl unset POLARSSL_MEMORY_BACKTRACE # execinfo.h |
| 215 | scripts/config.pl unset POLARSSL_MEMORY_BUFFER_ALLOC_C # calls exit |
| 216 | CC=arm-none-eabi-gcc CFLAGS=-Werror make lib |
| 217 | fi # arm-gcc |
| 218 | |
Manuel Pégourié-Gonnard | c5c5939 | 2015-02-10 17:38:54 +0100 | [diff] [blame] | 219 | if which armcc >/dev/null; then |
| 220 | msg "build: armcc, make" |
| 221 | cleanup |
| 222 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 223 | scripts/config.pl full |
| 224 | scripts/config.pl unset POLARSSL_NET_C |
| 225 | scripts/config.pl unset POLARSSL_TIMING_C |
| 226 | scripts/config.pl unset POLARSSL_FS_IO |
| 227 | scripts/config.pl unset POLARSSL_HAVE_TIME |
Manuel Pégourié-Gonnard | b0282ea | 2015-09-02 12:12:44 +0200 | [diff] [blame] | 228 | scripts/config.pl unset POLARSSL_ERROR_STRERROR_BC # deprecated |
| 229 | scripts/config.pl unset POLARSSL_PBKDF2_C # deprecated |
Manuel Pégourié-Gonnard | c5c5939 | 2015-02-10 17:38:54 +0100 | [diff] [blame] | 230 | # following things are not in the default config |
Manuel Pégourié-Gonnard | f1002f8 | 2015-03-25 16:44:26 +0100 | [diff] [blame] | 231 | scripts/config.pl unset POLARSSL_DEPRECATED_WARNING |
Manuel Pégourié-Gonnard | c5c5939 | 2015-02-10 17:38:54 +0100 | [diff] [blame] | 232 | scripts/config.pl unset POLARSSL_HAVEGE_C # depends on timing.c |
| 233 | scripts/config.pl unset POLARSSL_THREADING_PTHREAD |
| 234 | scripts/config.pl unset POLARSSL_THREADING_C |
| 235 | scripts/config.pl unset POLARSSL_MEMORY_BACKTRACE # execinfo.h |
| 236 | scripts/config.pl unset POLARSSL_MEMORY_BUFFER_ALLOC_C # calls exit |
Manuel Pégourié-Gonnard | 20715dc | 2016-01-07 13:06:51 +0100 | [diff] [blame] | 237 | CC=armcc AR=armar WARNING_CFLAGS= make lib 2> armcc.stderr |
Manuel Pégourié-Gonnard | 129e413 | 2015-03-13 17:29:18 +0100 | [diff] [blame] | 238 | if [ -s armcc.stderr ]; then |
| 239 | cat armcc.stderr |
| 240 | exit 1; |
| 241 | fi |
Manuel Pégourié-Gonnard | c5c5939 | 2015-02-10 17:38:54 +0100 | [diff] [blame] | 242 | rm armcc.stderr |
| 243 | fi # armcc |
| 244 | |
Manuel Pégourié-Gonnard | 6448bce | 2015-02-16 17:18:36 +0100 | [diff] [blame] | 245 | if which i686-w64-mingw32-gcc >/dev/null; then |
| 246 | msg "build: cross-mingw64, make" # ~ 30s |
| 247 | cleanup |
Manuel Pégourié-Gonnard | 1b1254f | 2015-08-10 11:56:06 +0200 | [diff] [blame] | 248 | CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS=-Werror WINDOWS_BUILD=1 make |
| 249 | WINDOWS_BUILD=1 make clean |
| 250 | CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS=-Werror WINDOWS_BUILD=1 SHARED=1 make |
| 251 | WINDOWS_BUILD=1 make clean |
Manuel Pégourié-Gonnard | 6448bce | 2015-02-16 17:18:36 +0100 | [diff] [blame] | 252 | fi |
| 253 | |
Manuel Pégourié-Gonnard | edb2dc9 | 2015-02-10 14:36:31 +0000 | [diff] [blame] | 254 | # MemSan currently only available on Linux 64 bits |
| 255 | if uname -a | grep 'Linux.*x86_64' >/dev/null; then |
Manuel Pégourié-Gonnard | 392d3dd | 2015-01-26 14:03:56 +0000 | [diff] [blame] | 256 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 257 | msg "build: MSan (clang)" # ~ 1 min 20s |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 258 | cleanup |
| 259 | cp "$CONFIG_H" "$CONFIG_BAK" |
| 260 | scripts/config.pl unset POLARSSL_AESNI_C # memsan doesn't grok asm |
Manuel Pégourié-Gonnard | 1e77a96 | 2015-01-26 14:11:51 +0100 | [diff] [blame] | 261 | scripts/config.pl set POLARSSL_NO_PLATFORM_ENTROPY # memsan vs getrandom() |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 262 | CC=clang cmake -D CMAKE_BUILD_TYPE:String=MemSan . |
| 263 | make |
Manuel Pégourié-Gonnard | 4a9dc2a | 2014-05-09 13:46:59 +0200 | [diff] [blame] | 264 | |
Manuel Pégourié-Gonnard | 89d69b3 | 2014-11-20 13:48:53 +0100 | [diff] [blame] | 265 | msg "test: main suites (MSan)" # ~ 10s |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 266 | make test |
| 267 | |
| 268 | msg "test: ssl-opt.sh (MSan)" # ~ 1 min |
| 269 | cd tests |
| 270 | ./ssl-opt.sh |
| 271 | cd .. |
| 272 | |
| 273 | # Optional part(s) |
| 274 | |
| 275 | if [ "$MEMORY" -gt 0 ]; then |
| 276 | msg "test: compat.sh (MSan)" # ~ 6 min 20s |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 277 | cd tests |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 278 | ./compat.sh |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 279 | cd .. |
Manuel Pégourié-Gonnard | 57255b1 | 2014-06-09 11:21:49 +0200 | [diff] [blame] | 280 | fi |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 281 | |
Manuel Pégourié-Gonnard | 392d3dd | 2015-01-26 14:03:56 +0000 | [diff] [blame] | 282 | else # no MemSan |
| 283 | |
| 284 | msg "build: Release (clang)" |
| 285 | cleanup |
| 286 | CC=clang cmake -D CMAKE_BUILD_TYPE:String=Release . |
| 287 | make |
| 288 | |
| 289 | msg "test: main suites valgrind (Release)" |
| 290 | make test |
| 291 | |
| 292 | # Optional part(s) |
| 293 | # Currently broken, programs don't seem to receive signals |
| 294 | # under valgrind on OS X |
| 295 | |
| 296 | if [ "$MEMORY" -gt 0 ]; then |
| 297 | msg "test: ssl-opt.sh --memcheck (Release)" |
| 298 | cd tests |
| 299 | ./ssl-opt.sh --memcheck |
| 300 | cd .. |
| 301 | fi |
| 302 | |
| 303 | if [ "$MEMORY" -gt 1 ]; then |
| 304 | msg "test: compat.sh --memcheck (Release)" |
| 305 | cd tests |
| 306 | ./compat.sh --memcheck |
| 307 | cd .. |
| 308 | fi |
| 309 | |
| 310 | fi # MemSan |
| 311 | |
Manuel Pégourié-Gonnard | 9bda9b3 | 2014-11-20 13:10:22 +0100 | [diff] [blame] | 312 | msg "Done, cleaning up" |
Manuel Pégourié-Gonnard | 80955ee | 2014-03-19 18:29:01 +0100 | [diff] [blame] | 313 | cleanup |
| 314 | |