diff options
| author | Michael Biebl <biebl@debian.org> | 2020-05-30 00:23:54 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2020-05-30 00:23:54 +0200 |
| commit | 45e8e1149027529194982212c804c0468aa01d98 (patch) | |
| tree | f3acb5e5824dd8b13f1a48bb516b0c92c5f052fd /tools | |
| parent | d460892bbfece74fb6d3cd846bf6ef548290be41 (diff) | |
New upstream version 1.24.2 upstream/1.24.2
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/run-nm-test.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/run-nm-test.sh b/tools/run-nm-test.sh index 16d9d8a7..02fced01 100755 --- a/tools/run-nm-test.sh +++ b/tools/run-nm-test.sh @@ -228,6 +228,19 @@ if [[ -n "$BUILDDIR" ]]; then fi fi +export ASAN_OPTIONS="$NM_TEST_ASAN_OPTIONS" +export LSAN_OPTIONS="$NM_TEST_LSAN_OPTIONS" +export UBSAN_OPTIONS="$NM_TEST_UBSAN_OPTIONS" +if [ -z "${NM_TEST_ASAN_OPTIONS+x}" ]; then + ASAN_OPTIONS="fast_unwind_on_malloc=false detect_leaks=1" +fi +if [ -z "${NM_TEST_LSAN_OPTIONS+x}" ]; then + LSAN_OPTIONS="suppressions=$SCRIPT_PATH/../lsan.suppressions" +fi +if [ -z "${NM_TEST_UBSAN_OPTIONS+x}" ]; then + UBSAN_OPTIONS="print_stacktrace=1:halt_on_error=1" +fi + if ! _is_true "$NMTST_USE_VALGRIND" 0; then export NM_TEST_UNDER_VALGRIND=0 exec "${NMTST_DBUS_RUN_SESSION[@]}" \ |