blob: e9c1c85877cde03533859c741d34f39f6a86e81b [file] [log] [blame]
Yingdi Yu906c2ea2014-10-31 11:24:50 -07001#!/usr/bin/env bash
Yingdi Yu906c2ea2014-10-31 11:24:50 -07002set -e
3
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -08004JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
Yingdi Yucaebb8c2014-12-11 14:55:17 -08006
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -08007set -x
8
9# Prepare environment
10rm -Rf ~/.ndn
11
12if has OSX $NODE_LABELS; then
13 security unlock-keychain -p named-data
14fi
15
16ndnsec-keygen "/tmp/jenkins/$NODE_NAME" | ndnsec-install-cert -
17
18BOOST_VERSION=$(python -c "import sys; sys.path.append('build/c4che'); import _cache; print(_cache.BOOST_VERSION_NUMBER);")
19
20ut_log_args() {
21 if (( BOOST_VERSION >= 106200 )); then
22 echo --logger=HRF,test_suite,stdout:XML,all,build/xunit-${1:-report}.xml
23 else
24 if [[ -n $XUNIT ]]; then
25 echo --log_level=all $( (( BOOST_VERSION >= 106000 )) && echo -- ) \
26 --log_format2=XML --log_sink2=build/xunit-${1:-report}.xml
27 else
28 echo --log_level=test_suite
29 fi
30 fi
31}
32
33ASAN_OPTIONS="color=always"
34ASAN_OPTIONS+=":detect_leaks=false"
35ASAN_OPTIONS+=":detect_stack_use_after_return=true"
36ASAN_OPTIONS+=":check_initialization_order=true"
37ASAN_OPTIONS+=":strict_init_order=true"
38ASAN_OPTIONS+=":detect_invalid_pointer_pairs=1"
39ASAN_OPTIONS+=":detect_container_overflow=false"
40ASAN_OPTIONS+=":strict_string_checks=true"
41ASAN_OPTIONS+=":strip_path_prefix=${PWD}/"
42export ASAN_OPTIONS
43
Davide Pesavento5188f312019-03-18 18:38:45 -040044export BOOST_TEST_BUILD_INFO=1
45export BOOST_TEST_COLOR_OUTPUT=1
Davide Pesaventoc2489b42017-10-28 17:19:08 -040046
Davide Pesavento7ef57e22017-10-28 16:58:43 -040047# Run unit tests
48./build/unit-tests $(ut_log_args)