blob: ab1428488ca72085d716d46d972639f9152b419b [file] [log] [blame]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05001#!/usr/bin/env bash
Davide Pesaventoda1a4d32022-08-19 19:03:24 -04002set -eo pipefail
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05003
Davide Pesavento133067f2020-04-02 22:08:27 -04004# https://github.com/google/sanitizers/wiki/AddressSanitizerFlags
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05005ASAN_OPTIONS="color=always"
Davide Pesavento133067f2020-04-02 22:08:27 -04006ASAN_OPTIONS+=":check_initialization_order=1"
7ASAN_OPTIONS+=":detect_stack_use_after_return=1"
8ASAN_OPTIONS+=":strict_init_order=1"
9ASAN_OPTIONS+=":strict_string_checks=1"
10ASAN_OPTIONS+=":detect_invalid_pointer_pairs=2"
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050011ASAN_OPTIONS+=":strip_path_prefix=${PWD}/"
12export ASAN_OPTIONS
13
Davide Pesaventoda1a4d32022-08-19 19:03:24 -040014# https://www.boost.org/doc/libs/release/libs/test/doc/html/boost_test/runtime_config/summary.html
Davide Pesavento1526fee2019-03-18 19:31:55 -040015export BOOST_TEST_BUILD_INFO=1
16export BOOST_TEST_COLOR_OUTPUT=1
Davide Pesavento042dfb32020-07-23 21:07:16 -040017export BOOST_TEST_DETECT_MEMORY_LEAK=0
18export BOOST_TEST_LOGGER=HRF,test_suite,stdout:XML,all,build/xunit-log.xml
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050019
Davide Pesaventoda1a4d32022-08-19 19:03:24 -040020set -x
21
22# Prepare environment
23rm -rf ~/.ndn
24
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050025# Run unit tests
Davide Pesavento042dfb32020-07-23 21:07:16 -040026./build/unit-tests