From 6e11a2e4160eba493e7cac1d7643202a934e9e98 Mon Sep 17 00:00:00 2001 From: Matt Morehouse Date: Mon, 20 Mar 2023 10:55:36 -0500 Subject: [PATCH] doc: document "make check-fuzz" --- doc/FUZZING.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/FUZZING.md b/doc/FUZZING.md index d5b8929ce7a8..c2101d1e0597 100644 --- a/doc/FUZZING.md +++ b/doc/FUZZING.md @@ -27,7 +27,14 @@ coverage (not required though). ./configure --enable-developer --enable-experimental-features --enable-address-sanitizer --enable-ub-sanitizer --enable-fuzzing --disable-valgrind CC=clang && make ``` -The targets will be built in `tests/fuzz/` as `fuzz-` binaries. +The targets will be built in `tests/fuzz/` as `fuzz-` binaries, with their best +known seed corpora stored in `tests/fuzz/corpora/`. + +You can run the fuzz targets on their seed corpora to check for regressions: + +``` +make check-fuzz +``` ## Run one or more target(s)