diff options
author | van Hauser <vh@thc.org> | 2020-02-19 10:53:38 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-02-19 10:53:38 +0100 |
commit | 9c1bef49e686c5b8128cf2077c98697a6c8a3649 (patch) | |
tree | 51a4cca0d6f173417b9af45031effa4d510916cb | |
parent | f9d7ad8e4353fe306b7574e3d645ba2c3ea423ed (diff) | |
download | afl++-9c1bef49e686c5b8128cf2077c98697a6c8a3649.tar.gz |
and make make work again
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 1e8a894b..2ff08db9 100644 --- a/Makefile +++ b/Makefile @@ -321,7 +321,7 @@ ifndef AFL_NO_X86 test_build: afl-gcc afl-as afl-showmap @echo "[*] Testing the CC wrapper and instrumentation output..." - @unset AFL_USE_ASAN AFL_USE_MSAN AFL_CC; AFL_INST_RATIO=100 AFL_PATH=. ./$(TEST_CC) $(CFLAGS) test-instr.c -o test-instr $(LDFLAGS) 2>&1 | grep 'afl-as' >/dev/null || (echo "Oops, afl-as did not get called from "$(TEST_CC)". This is normally achieved by "$(CC)" honoring the -B option."; exit 1 ) + @unset AFL_USE_ASAN AFL_USE_MSAN AFL_CC; AFL_DEBUG=1 AFL_INST_RATIO=100 AFL_PATH=. ./$(TEST_CC) $(CFLAGS) test-instr.c -o test-instr $(LDFLAGS) 2>&1 | grep 'afl-as' >/dev/null || (echo "Oops, afl-as did not get called from "$(TEST_CC)". This is normally achieved by "$(CC)" honoring the -B option."; exit 1 ) ./afl-showmap -m none -q -o .test-instr0 ./test-instr < /dev/null echo 1 | ./afl-showmap -m none -q -o .test-instr1 ./test-instr @rm -f test-instr |