blob: cbda13a2074aa4e32676f50a7a7d075b153ad335 [file] [log] [blame]
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04001#!/usr/bin/env bash
Davide Pesavento27dd70c2022-08-19 16:24:28 -04002set -eo pipefail
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04003
Davide Pesavento508d2cb2024-02-10 14:55:04 -05004# https://github.com/google/sanitizers/wiki/SanitizerCommonFlags
Davide Pesaventoec61b742020-04-18 01:00:12 -04005# https://github.com/google/sanitizers/wiki/AddressSanitizerFlags
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04006ASAN_OPTIONS="color=always"
Davide Pesavento508d2cb2024-02-10 14:55:04 -05007ASAN_OPTIONS+=":strip_path_prefix=${PWD}/"
Davide Pesaventoec61b742020-04-18 01:00:12 -04008ASAN_OPTIONS+=":check_initialization_order=1"
9ASAN_OPTIONS+=":detect_stack_use_after_return=1"
10ASAN_OPTIONS+=":strict_init_order=1"
11ASAN_OPTIONS+=":strict_string_checks=1"
12ASAN_OPTIONS+=":detect_invalid_pointer_pairs=2"
13ASAN_OPTIONS+=":detect_container_overflow=0"
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040014export ASAN_OPTIONS
15
Davide Pesavento27dd70c2022-08-19 16:24:28 -040016# https://www.boost.org/doc/libs/release/libs/test/doc/html/boost_test/runtime_config/summary.html
Davide Pesavento8f9d0622018-11-27 01:23:37 -050017export BOOST_TEST_BUILD_INFO=1
18export BOOST_TEST_COLOR_OUTPUT=1
Davide Pesaventoba3f6892020-12-08 22:18:35 -050019export BOOST_TEST_DETECT_MEMORY_LEAK=0
20export BOOST_TEST_LOGGER=HRF,test_suite,stdout:XML,all,build/xunit-log.xml
Davide Pesavento8f9d0622018-11-27 01:23:37 -050021
Davide Pesavento27dd70c2022-08-19 16:24:28 -040022set -x
23
24# Prepare environment
25rm -rf ~/.ndn
26
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040027# Run unit tests
Davide Pesaventoba3f6892020-12-08 22:18:35 -050028./build/unit-tests