blob: 5ef74cd794a5004a1ce89b75ce45cc9af7804a6e [file] [log] [blame]
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +01001#!/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é-Gonnard3895f5a2014-03-27 14:44:04 +01008#
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +00009# 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é-Gonnard80955ee2014-03-19 18:29:01 +010011
12# Abort on errors (and uninitiliased variables)
13set -eu
14
15if [ -d library -a -d include -a -d tests ]; then :; else
Manuel Pégourié-Gonnarde4f6edc2015-01-22 16:43:54 +000016 echo "Must be run from mbed TLS root" >&2
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010017 exit 1
18fi
19
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000020CONFIG_H='include/mbedtls/config.h'
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +020021CONFIG_BAK="$CONFIG_H.bak"
22
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010023MEMORY=0
24
25while [ $# -gt 0 ]; do
26 case "$1" in
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +010027 -m*)
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +000028 MEMORY=${1#-m}
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010029 ;;
30 *)
31 echo "Unknown argument: '$1'" >&2
32 echo "Use the source, Luke!" >&2
33 exit 1
34 ;;
35 esac
36 shift
37done
38
39# remove built files as well as the cmake cache/config
40cleanup()
41{
42 make clean
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +020043
Manuel Pégourié-Gonnard77d56bb2015-07-28 15:00:37 +020044 find . -name yotta -prune -o -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} \+
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000045 rm -f include/Makefile include/mbedtls/Makefile programs/*/Makefile
Paul Bakkerfe0984d2014-06-13 00:13:45 +020046 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é-Gonnarde73b2632014-07-12 04:00:00 +020048
49 if [ -f "$CONFIG_BAK" ]; then
50 mv "$CONFIG_BAK" "$CONFIG_H"
51 fi
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010052}
53
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +020054trap cleanup INT TERM HUP
55
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +010056msg()
57{
58 echo ""
59 echo "******************************************************************"
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +010060 echo "* $1 "
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +000061 printf "* "; date
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +010062 echo "******************************************************************"
63}
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010064
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +020065# The test ordering tries to optimize for the following criteria:
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +010066# 1. Catch possible problems early, by running first tests that run quickly
Manuel Pégourié-Gonnard61bc57a2014-08-14 11:29:06 +020067# 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é-Gonnard57255b12014-06-09 11:21:49 +020069# 2. Minimize total running time, by avoiding useless rebuilds
70#
71# Indicative running times are given for reference.
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010072
Manuel Pégourié-Gonnardea29d152014-11-20 17:32:33 +010073msg "test: recursion.pl" # < 1s
Manuel Pégourié-Gonnardd09a6b52015-04-09 17:19:23 +020074tests/scripts/recursion.pl library/*.c
Manuel Pégourié-Gonnardea29d152014-11-20 17:32:33 +010075
Manuel Pégourié-Gonnardb3b8e432015-02-13 14:52:19 +000076msg "test: freshness of generated source files" # < 1s
77tests/scripts/check-generated-files.sh
78
Manuel Pégourié-Gonnardd09a6b52015-04-09 17:19:23 +020079msg "test: doxygen markup outside doxygen blocks" # < 1s
80tests/scripts/check-doxy-blocks.pl
81
Manuel Pégourié-Gonnarda687baf2015-04-09 11:09:03 +020082msg "test/build: declared and exported names" # < 3s
83cleanup
84tests/scripts/check-names.sh
85
Simon Butcher73156352015-11-04 00:36:30 +000086# Yotta not supported in 2.1 branch
87#msg "build: create and build yotta module" # ~ 30s
88#cleanup
89#tests/scripts/yotta-build.sh
Manuel Pégourié-Gonnard77d56bb2015-07-28 15:00:37 +020090
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +010091msg "build: cmake, gcc, ASan" # ~ 1 min 50s
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +010092cleanup
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +010093CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +010094make
95
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +010096msg "test: main suites and selftest (ASan build)" # ~ 50s
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +010097make test
98programs/test/selftest
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +020099
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100100msg "test: ssl-opt.sh (ASan build)" # ~ 1 min
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100101tests/ssl-opt.sh
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200102
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100103msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200104tests/scripts/test-ref-configs.pl
105
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100106# Most frequent issues are likely to be caught at this point
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200107
108msg "build: with ASan (rebuild after ref-configs)" # ~ 1 min
109make
110
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100111msg "test: compat.sh (ASan build)" # ~ 6 min
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100112tests/compat.sh
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200113
Simon Butcher02b8d482016-03-15 20:39:52 +0000114msg "build: Default + SSLv3 (ASan build)" # ~ 6 min
115cleanup
116cp "$CONFIG_H" "$CONFIG_BAK"
117scripts/config.pl set MBEDTLS_SSL_PROTO_SSL3
118CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
119make
120
121msg "test: SSLv3 - main suites and selftest (ASan build)" # ~ 50s
122make test
123programs/test/selftest
124
125msg "build: SSLv3 - compat.sh (ASan build)" # ~ 6 min
126tests/compat.sh -m 'ssl3 tls1 tls1_1 tls1_2 dtls1 dtls1_2'
127
128msg "build: SSLv3 - ssl-opt.sh (ASan build)" # ~ 6 min
129tests/ssl-opt.sh
130
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100131msg "build: cmake, full config, clang" # ~ 50s
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +0100132cleanup
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200133cp "$CONFIG_H" "$CONFIG_BAK"
134scripts/config.pl full
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200135scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE # too slow for tests
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100136CC=clang cmake -D CMAKE_BUILD_TYPE:String=Check .
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +0100137make
138
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100139msg "test: main suites (full config)" # ~ 5s
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200140make test
141
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100142msg "test: ssl-opt.sh default (full config)" # ~ 1s
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100143tests/ssl-opt.sh -f Default
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200144
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +0100145msg "test: compat.sh RC4, DES & NULL (full config)" # ~ 2 min
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100146tests/compat.sh -e '3DES\|DES-CBC3' -f 'NULL\|DES\|RC4\|ARCFOUR'
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200147
Manuel Pégourié-Gonnard134ca182015-10-23 09:04:45 +0200148msg "test/build: curves.pl (gcc)" # ~ 4 min
Manuel Pégourié-Gonnard246978d2014-11-20 13:29:53 +0100149cleanup
150cmake -D CMAKE_BUILD_TYPE:String=Debug .
151tests/scripts/curves.pl
152
Manuel Pégourié-Gonnard134ca182015-10-23 09:04:45 +0200153msg "test/build: key-exchanges (gcc)" # ~ 1 min
154cleanup
155cmake -D CMAKE_BUILD_TYPE:String=Check .
156tests/scripts/key-exchanges.pl
157
Manuel Pégourié-Gonnard61fe8b02015-03-13 14:33:16 +0000158msg "build: Unix make, -Os (gcc)" # ~ 30s
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +0100159cleanup
Manuel Pégourié-Gonnard61fe8b02015-03-13 14:33:16 +0000160CC=gcc CFLAGS='-Werror -Os' make
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100161
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200162# this is meant to cath missing #define mbedtls_printf etc
Manuel Pégourié-Gonnard981732b2015-02-17 15:46:45 +0000163# disable fsio to catch some more missing #include <stdio.h>
Manuel Pégourié-Gonnard757ca002015-03-23 15:24:07 +0100164msg "build: full config except platform/fsio, make, gcc" # ~ 30s
Manuel Pégourié-Gonnarda71780e2015-02-13 13:56:55 +0000165cleanup
166cp "$CONFIG_H" "$CONFIG_BAK"
167scripts/config.pl full
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200168scripts/config.pl unset MBEDTLS_PLATFORM_C
169scripts/config.pl unset MBEDTLS_PLATFORM_MEMORY
Manuel Pégourié-Gonnard3d4755b2015-06-03 14:03:17 +0100170scripts/config.pl unset MBEDTLS_PLATFORM_PRINTF_ALT
171scripts/config.pl unset MBEDTLS_PLATFORM_FPRINTF_ALT
172scripts/config.pl unset MBEDTLS_PLATFORM_SNPRINTF_ALT
173scripts/config.pl unset MBEDTLS_PLATFORM_EXIT_ALT
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
175scripts/config.pl unset MBEDTLS_FS_IO
Manuel Pégourié-Gonnard61fe8b02015-03-13 14:33:16 +0000176CC=gcc CFLAGS='-Werror -O0' make
Manuel Pégourié-Gonnarda71780e2015-02-13 13:56:55 +0000177
Manuel Pégourié-Gonnarddccb80b2015-06-03 10:20:33 +0100178# catch compile bugs in _uninit functions
179msg "build: full config with NO_STD_FUNCTION, make, gcc" # ~ 30s
180cleanup
181cp "$CONFIG_H" "$CONFIG_BAK"
182scripts/config.pl full
Manuel Pégourié-Gonnard7ee5ddd2015-06-03 10:33:55 +0100183scripts/config.pl set MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
Manuel Pégourié-Gonnarddccb80b2015-06-03 10:20:33 +0100184CC=gcc CFLAGS='-Werror -O0' make
185
Manuel Pégourié-Gonnard66b8e952015-05-20 11:13:56 +0200186msg "build: full config except ssl_srv.c, make, gcc" # ~ 30s
187cleanup
188cp "$CONFIG_H" "$CONFIG_BAK"
189scripts/config.pl full
190scripts/config.pl unset MBEDTLS_SSL_SRV_C
191CC=gcc CFLAGS='-Werror -O0' make
192
193msg "build: full config except ssl_cli.c, make, gcc" # ~ 30s
194cleanup
195cp "$CONFIG_H" "$CONFIG_BAK"
196scripts/config.pl full
197scripts/config.pl unset MBEDTLS_SSL_CLI_C
198CC=gcc CFLAGS='-Werror -O0' make
199
Manuel Pégourié-Gonnardf78e4de2015-05-29 10:52:14 +0200200msg "build: full config except net.c, make, gcc -std=c99 -pedantic" # ~ 30s
Manuel Pégourié-Gonnard009a2642015-05-29 10:31:13 +0200201cleanup
202cp "$CONFIG_H" "$CONFIG_BAK"
203scripts/config.pl full
Manuel Pégourié-Gonnardf78e4de2015-05-29 10:52:14 +0200204scripts/config.pl unset MBEDTLS_NET_C # getaddrinfo() undeclared, etc.
205scripts/config.pl set MBEDTLS_NO_PLATFORM_ENTROPY # uses syscall() on GNU/Linux
Manuel Pégourié-Gonnard71859362015-06-02 16:39:22 +0100206CC=gcc CFLAGS='-Werror -O0 -std=c99 -pedantic' make lib
Manuel Pégourié-Gonnard009a2642015-05-29 10:31:13 +0200207
Manuel Pégourié-Gonnard9b06abe2015-06-25 09:56:07 +0200208if uname -a | grep -F Linux >/dev/null; then
209msg "build/test: make shared" # ~ 40s
210cleanup
211make SHARED=1 all check
212fi
213
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +0000214if uname -a | grep -F x86_64 >/dev/null; then
215msg "build: i386, make, gcc" # ~ 30s
216cleanup
217CC=gcc CFLAGS='-Werror -m32' make
218fi # x86_64
219
220if which arm-none-eabi-gcc >/dev/null; then
221msg "build: arm-none-eabi-gcc, make" # ~ 10s
222cleanup
223cp "$CONFIG_H" "$CONFIG_BAK"
224scripts/config.pl full
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200225scripts/config.pl unset MBEDTLS_NET_C
226scripts/config.pl unset MBEDTLS_TIMING_C
227scripts/config.pl unset MBEDTLS_FS_IO
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +0000228# following things are not in the default config
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200229scripts/config.pl unset MBEDTLS_HAVEGE_C # depends on timing.c
230scripts/config.pl unset MBEDTLS_THREADING_PTHREAD
231scripts/config.pl unset MBEDTLS_THREADING_C
232scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE # execinfo.h
233scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C # calls exit
Manuel Pégourié-Gonnarde058ea22015-06-25 09:04:13 +0200234CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld CFLAGS=-Werror make lib
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +0000235fi # arm-gcc
236
Manuel Pégourié-Gonnard6dc26512015-06-25 10:48:24 +0200237if which armcc >/dev/null && armcc --help >/dev/null 2>&1; then
Manuel Pégourié-Gonnardc5c59392015-02-10 17:38:54 +0100238msg "build: armcc, make"
239cleanup
240cp "$CONFIG_H" "$CONFIG_BAK"
241scripts/config.pl full
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200242scripts/config.pl unset MBEDTLS_NET_C
243scripts/config.pl unset MBEDTLS_TIMING_C
244scripts/config.pl unset MBEDTLS_FS_IO
245scripts/config.pl unset MBEDTLS_HAVE_TIME
Manuel Pégourié-Gonnardbbc60db2015-06-22 14:31:50 +0200246scripts/config.pl unset MBEDTLS_HAVE_TIME_DATE
Manuel Pégourié-Gonnardc5c59392015-02-10 17:38:54 +0100247# following things are not in the default config
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200248scripts/config.pl unset MBEDTLS_DEPRECATED_WARNING
249scripts/config.pl unset MBEDTLS_HAVEGE_C # depends on timing.c
250scripts/config.pl unset MBEDTLS_THREADING_PTHREAD
251scripts/config.pl unset MBEDTLS_THREADING_C
252scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE # execinfo.h
253scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C # calls exit
Manuel Pégourié-Gonnardbb81b4a2016-01-07 13:06:51 +0100254CC=armcc AR=armar WARNING_CFLAGS= make lib 2> armcc.stderr
Manuel Pégourié-Gonnard129e4132015-03-13 17:29:18 +0100255if [ -s armcc.stderr ]; then
256 cat armcc.stderr
257 exit 1;
258fi
Manuel Pégourié-Gonnardc5c59392015-02-10 17:38:54 +0100259rm armcc.stderr
260fi # armcc
261
Manuel Pégourié-Gonnard6448bce2015-02-16 17:18:36 +0100262if which i686-w64-mingw32-gcc >/dev/null; then
263msg "build: cross-mingw64, make" # ~ 30s
264cleanup
Manuel Pégourié-Gonnarde058ea22015-06-25 09:04:13 +0200265CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS=-Werror WINDOWS_BUILD=1 make
Manuel Pégourié-Gonnard52fa38a2015-06-23 14:29:58 +0200266WINDOWS_BUILD=1 make clean
Manuel Pégourié-Gonnarde33316c2015-08-07 13:17:23 +0200267CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS=-Werror WINDOWS_BUILD=1 SHARED=1 make
268WINDOWS_BUILD=1 make clean
Manuel Pégourié-Gonnard6448bce2015-02-16 17:18:36 +0100269fi
270
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +0000271# MemSan currently only available on Linux 64 bits
272if uname -a | grep 'Linux.*x86_64' >/dev/null; then
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +0000273
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100274msg "build: MSan (clang)" # ~ 1 min 20s
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100275cleanup
276cp "$CONFIG_H" "$CONFIG_BAK"
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200277scripts/config.pl unset MBEDTLS_AESNI_C # memsan doesn't grok asm
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100278CC=clang cmake -D CMAKE_BUILD_TYPE:String=MemSan .
279make
Manuel Pégourié-Gonnard4a9dc2a2014-05-09 13:46:59 +0200280
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100281msg "test: main suites (MSan)" # ~ 10s
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100282make test
283
284msg "test: ssl-opt.sh (MSan)" # ~ 1 min
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100285tests/ssl-opt.sh
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100286
287# Optional part(s)
288
289if [ "$MEMORY" -gt 0 ]; then
290 msg "test: compat.sh (MSan)" # ~ 6 min 20s
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100291 tests/compat.sh
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200292fi
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100293
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +0000294else # no MemSan
295
296msg "build: Release (clang)"
297cleanup
298CC=clang cmake -D CMAKE_BUILD_TYPE:String=Release .
299make
300
301msg "test: main suites valgrind (Release)"
Manuel Pégourié-Gonnard9afdc832015-08-04 17:15:13 +0200302make memcheck
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +0000303
304# Optional part(s)
305# Currently broken, programs don't seem to receive signals
306# under valgrind on OS X
307
308if [ "$MEMORY" -gt 0 ]; then
309 msg "test: ssl-opt.sh --memcheck (Release)"
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100310 tests/ssl-opt.sh --memcheck
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +0000311fi
312
313if [ "$MEMORY" -gt 1 ]; then
314 msg "test: compat.sh --memcheck (Release)"
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100315 tests/compat.sh --memcheck
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +0000316fi
317
318fi # MemSan
319
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100320msg "Done, cleaning up"
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100321cleanup
322