Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame^] | 1 | #!/usr/bin/env bash |
| 2 | set -e |
| 3 | |
| 4 | JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) |
| 5 | source "$JDIR"/util.sh |
| 6 | |
| 7 | set -x |
| 8 | |
| 9 | # Prepare environment |
| 10 | rm -Rf ~/.ndn |
| 11 | |
| 12 | if has OSX $NODE_LABELS; then |
| 13 | security unlock-keychain -p named-data |
| 14 | fi |
| 15 | |
| 16 | ndnsec-keygen "/tmp/jenkins/$NODE_NAME" | ndnsec-install-cert - |
| 17 | |
| 18 | BOOST_VERSION=$(python -c "import sys; sys.path.append('build/c4che'); import _cache; print(_cache.BOOST_VERSION_NUMBER);") |
| 19 | |
| 20 | ut_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 | |
| 33 | ASAN_OPTIONS="color=always" |
| 34 | ASAN_OPTIONS+=":detect_stack_use_after_return=true" |
| 35 | ASAN_OPTIONS+=":check_initialization_order=true" |
| 36 | ASAN_OPTIONS+=":strict_init_order=true" |
| 37 | ASAN_OPTIONS+=":detect_invalid_pointer_pairs=1" |
| 38 | ASAN_OPTIONS+=":detect_container_overflow=false" |
| 39 | ASAN_OPTIONS+=":strict_string_checks=true" |
| 40 | ASAN_OPTIONS+=":strip_path_prefix=${PWD}/" |
| 41 | export ASAN_OPTIONS |
| 42 | |
| 43 | export BOOST_TEST_COLOR_OUTPUT="yes" |
| 44 | export NDN_LOG="*=DEBUG" |
| 45 | |
| 46 | # Run unit tests |
| 47 | ./build/unit-tests $(ut_log_args) |