diff options
author | van Hauser <vh@thc.org> | 2020-12-18 16:38:24 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-18 16:38:24 +0100 |
commit | 73dd6d86abc16c2ceb5529f3a261724be8b7896a (patch) | |
tree | 0ff4b8bf47d853665ebeef13bc31390eeb65bcfb /GNUmakefile.llvm | |
parent | 79c98731c9864d457df06cfb4e1c15137e0cf832 (diff) | |
download | afl++-73dd6d86abc16c2ceb5529f3a261724be8b7896a.tar.gz |
dont fail with ASAN_BUILD
Diffstat (limited to 'GNUmakefile.llvm')
-rw-r--r-- | GNUmakefile.llvm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm index 414cd487..699fb5f4 100644 --- a/GNUmakefile.llvm +++ b/GNUmakefile.llvm @@ -452,7 +452,7 @@ document: .PHONY: test_build test_build: $(PROGS) @echo "[*] Testing the CC wrapper and instrumentation output..." - unset AFL_USE_ASAN AFL_USE_MSAN AFL_INST_RATIO; AFL_QUIET=1 AFL_PATH=. AFL_LLVM_LAF_ALL=1 ./afl-cc $(CFLAGS) $(CPPFLAGS) ./test-instr.c -o test-instr $(LDFLAGS) + unset AFL_USE_ASAN AFL_USE_MSAN AFL_INST_RATIO; ASAN_OPTIONS=detect_leaks=0 AFL_QUIET=1 AFL_PATH=. AFL_LLVM_LAF_ALL=1 ./afl-cc $(CFLAGS) $(CPPFLAGS) ./test-instr.c -o test-instr $(LDFLAGS) ASAN_OPTIONS=detect_leaks=0 ./afl-showmap -m none -q -o .test-instr0 ./test-instr < /dev/null echo 1 | ASAN_OPTIONS=detect_leaks=0 ./afl-showmap -m none -q -o .test-instr1 ./test-instr @rm -f test-instr |