diff options
author | hexcoder- <heiko@hexco.de> | 2020-12-12 11:25:10 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-12-12 11:25:10 +0100 |
commit | 7f50aa26dbe7a2832b377793be4069207e6b0dc1 (patch) | |
tree | ca6eef783bfa79915589b679c3a73d2a0fa578f4 | |
parent | 54f59c7403502aa3be73bf860b08c38ae5a64bfa (diff) | |
download | afl++-7f50aa26dbe7a2832b377793be4069207e6b0dc1.tar.gz |
let the check for afl-gcc not abort 'make tests'
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 4d71e9fb..5c82279b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -526,7 +526,7 @@ test_build: afl-cc afl-gcc afl-as afl-showmap @rm -f test-instr @cmp -s .test-instr0 .test-instr1; DR="$$?"; rm -f .test-instr0 .test-instr1; if [ "$$DR" = "0" ]; then echo; echo "Oops, the instrumentation of afl-gcc does not seem to be behaving correctly!"; \ gcc -v 2>&1 | grep -q -- --with-as= && ( echo; echo "Gcc is configured not to use an external assembler with the -B option."; echo "See docs/INSTALL.md section 5 how to build a -B enabled gcc." ) || \ - ( echo; echo "Please post to https://github.com/AFLplusplus/AFLplusplus/issues to troubleshoot the issue." ); echo; exit 1; fi + ( echo; echo "Please post to https://github.com/AFLplusplus/AFLplusplus/issues to troubleshoot the issue." ); echo; exit 0; fi @echo @echo "[+] All right, the instrumentation of afl-gcc seems to be working!" else |