diff options
author | hexcoder- <heiko@hexco.de> | 2020-11-27 21:10:55 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-11-27 21:10:55 +0100 |
commit | fdac887660d776c725c148bf144548f9d1b7f1e6 (patch) | |
tree | d1416d593c76fb2d354f9d481aa1ac4ad85aaca9 | |
parent | b792c5908098a79184c48946698fce3e734ac191 (diff) | |
download | afl++-fdac887660d776c725c148bf144548f9d1b7f1e6.tar.gz |
no fancy special options for the fundamental test compile (no unnecessary dependencies)
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index a7d8bd9b..f17a6253 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -512,7 +512,7 @@ code-format: ifndef AFL_NO_X86 test_build: afl-cc afl-as afl-showmap @echo "[*] Testing the CC wrapper and instrumentation output..." - @unset AFL_MAP_SIZE AFL_USE_UBSAN AFL_USE_CFISAN AFL_USE_ASAN AFL_USE_MSAN AFL_CC; AFL_INST_RATIO=100 AFL_PATH=. ./afl-cc $(CFLAGS) test-instr.c -o test-instr $(LDFLAGS) 2>&1 || (echo "Oops, afl-cc failed"; exit 1 ) + @unset AFL_MAP_SIZE AFL_USE_UBSAN AFL_USE_CFISAN AFL_USE_ASAN AFL_USE_MSAN AFL_CC; AFL_INST_RATIO=100 AFL_PATH=. ./afl-cc test-instr.c -o test-instr 2>&1 || (echo "Oops, afl-cc failed"; exit 1 ) 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 |