blob: 81c00b1513073be645b91ac5720ee19949c35499 [file] [log] [blame]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05001#!/usr/bin/env bash
Davide Pesavento133067f2020-04-02 22:08:27 -04002set -ex
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05003
4# Prepare environment
Davide Pesavento133067f2020-04-02 22:08:27 -04005rm -rf ~/.ndn
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05006
Davide Pesavento133067f2020-04-02 22:08:27 -04007# https://github.com/google/sanitizers/wiki/AddressSanitizerFlags
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05008ASAN_OPTIONS="color=always"
Davide Pesavento133067f2020-04-02 22:08:27 -04009ASAN_OPTIONS+=":check_initialization_order=1"
10ASAN_OPTIONS+=":detect_stack_use_after_return=1"
11ASAN_OPTIONS+=":strict_init_order=1"
12ASAN_OPTIONS+=":strict_string_checks=1"
13ASAN_OPTIONS+=":detect_invalid_pointer_pairs=2"
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050014ASAN_OPTIONS+=":strip_path_prefix=${PWD}/"
15export ASAN_OPTIONS
16
Davide Pesavento1526fee2019-03-18 19:31:55 -040017export BOOST_TEST_BUILD_INFO=1
18export BOOST_TEST_COLOR_OUTPUT=1
Davide Pesavento042dfb32020-07-23 21:07:16 -040019export BOOST_TEST_DETECT_MEMORY_LEAK=0
20export BOOST_TEST_LOGGER=HRF,test_suite,stdout:XML,all,build/xunit-log.xml
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050021
22# Run unit tests
Davide Pesavento042dfb32020-07-23 21:07:16 -040023./build/unit-tests