]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix configure options in FUZZING.md
authorPetr Špaček <pspacek@isc.org>
Fri, 19 Feb 2021 14:32:05 +0000 (15:32 +0100)
committerPetr Špaček <pspacek@isc.org>
Thu, 24 Feb 2022 10:12:02 +0000 (11:12 +0100)
fuzz/FUZZING.md

index 65363e1ac13e7190732ec493ff9e0535ec1415a1..357b323b7dedcc817d5a4c1b8aede409c8379c29 100644 (file)
@@ -18,10 +18,10 @@ The tests in this directory can be operated in three modes:
 * non-fuzzing - the test just runs over all input located in `<test_name>.in/`
   directory by compiling with mock main.c that walks through the directory and
   runs `LLVMFuzzerTestOneInput()` over the input files
-* AFL - `./configure --with-fuzzing=afl` will either feed the stdin to
+* AFL - `./configure --enable-fuzzing=afl` will either feed the stdin to
   `LLVMFuzzerTestOneInput()` or run the `__AFL_LOOP(10000)` if compiled with
-  `afl-clang-fast`
-* LibFuzzer - `./configure --with-fuzzing=libfuzzer` will disable `main.c`
+  `afl-clang-fast`. You have to compile using `CC=afl-<gcc|clang>`.
+* LibFuzzer - `./configure --enable-fuzzing=libfuzzer` will disable `main.c`
   completely and it uses the standard LibFuzzer mechanims to feed
   `LLVMFuzzerTestOneInput` with the fuzzer