diff options
| author | van Hauser <vh@thc.org> | 2024-11-11 15:24:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-11 15:24:40 +0100 |
| commit | 2c6f2c970dd26d01007c0329e1a10eed7ded89c2 (patch) | |
| tree | a46966d36e1ed5b687317e4abea83b2a82823f2d /GNUmakefile | |
| parent | f39cf57eac13f859fcf8c082b038ee6254bc0da9 (diff) | |
| parent | 0e3157375b67321a534c1e11a9f8e114c5060843 (diff) | |
| download | afl++-2c6f2c970dd26d01007c0329e1a10eed7ded89c2.tar.gz | |
Merge pull request #2242 from abhigargrepo/dev
Unsetting AFL_LLVM_ALLOWLIST and AFL_LLVM_DENYLIST environment variables in make files
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 2f0255ed..ea59f382 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -578,7 +578,7 @@ code-format: ifndef AFL_NO_X86 test_build: afl-cc afl-gcc afl-as afl-showmap @echo "[*] Testing the CC wrapper afl-cc and its instrumentation output..." - @unset AFL_MAP_SIZE AFL_USE_UBSAN AFL_USE_CFISAN AFL_USE_LSAN AFL_USE_ASAN AFL_USE_MSAN; ASAN_OPTIONS=detect_leaks=0 AFL_INST_RATIO=100 AFL_PATH=. ./afl-cc test-instr.c $(LDFLAGS) -o test-instr 2>&1 || (echo "Oops, afl-cc failed"; exit 1 ) + @unset AFL_MAP_SIZE AFL_USE_UBSAN AFL_USE_CFISAN AFL_USE_LSAN AFL_USE_ASAN AFL_USE_MSAN AFL_LLVM_ALLOWLIST AFL_LLVM_DENYLIST; ASAN_OPTIONS=detect_leaks=0 AFL_INST_RATIO=100 AFL_PATH=. ./afl-cc test-instr.c $(LDFLAGS) -o test-instr 2>&1 || (echo "Oops, afl-cc failed"; exit 1 ) -ASAN_OPTIONS=detect_leaks=0 ./afl-showmap -q -m none -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 |
