diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-23 14:41:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-23 14:41:46 +0200 |
commit | 95a467e7eeab664a71446e320d328d1d7c52a35a (patch) | |
tree | 01c729d91d2716935e3269018c617f09ba473819 /src/Makefile | |
parent | 0d6fe631f75effbfca92a4f61bbc2fab7385af09 (diff) | |
download | vim-git-95a467e7eeab664a71446e320d328d1d7c52a35a.tar.gz |
patch 8.2.0621: after running tests asan files may remainv8.2.0621
Problem: After running tests asan files may remain.
Solution: Clean up asan files with "make testclean".
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index c32ea0840..b110f9113 100644 --- a/src/Makefile +++ b/src/Makefile @@ -696,7 +696,8 @@ LINT_OPTIONS = -beprxzF # More at: https://code.google.com/p/address-sanitizer/ # Useful environment variables: # $ export ASAN_OPTIONS="print_stacktrace=1 log_path=asan" -# $ export LSAN_OPTIONS="suppressions=$cwd/testdir/lsan-suppress.txt" +# $ export LSAN_OPTIONS="suppressions=`pwd`/testdir/lsan-suppress.txt" +# When running tests output can be found in testdir/asan.* #SANITIZER_CFLAGS = -g -O0 -fsanitize=address -fno-omit-frame-pointer #SANITIZER_CFLAGS = -g -O0 -fsanitize=undefined -fno-omit-frame-pointer SANITIZER_LIBS = $(SANITIZER_CFLAGS) |