From 014b8b78a7d15f00900085c6a7bb396d383c1ed8 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 7 Jul 2024 10:27:01 -0700 Subject: [PATCH] test(fuzz): Refactor: don't need to fuzz all the way to convergence *before* merging in old inputs --- build-fuzz-corpus-multiple-restarts.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-fuzz-corpus-multiple-restarts.sh b/build-fuzz-corpus-multiple-restarts.sh index 2d6b4165..93f82828 100755 --- a/build-fuzz-corpus-multiple-restarts.sh +++ b/build-fuzz-corpus-multiple-restarts.sh @@ -53,5 +53,8 @@ for i in "${SPECIAL_RESTARTS[@]}"; do rm -rf "fuzz/corpus/fuzz_$1_restart_${i}" done echo "$(date): RUNNING WITH MERGED CORPUS" -./fuzz-until-converged.sh "$1" "$2" +cargo fuzz run --all-features "fuzz_$1" "fuzz/corpus/fuzz_$1" -- \ + -dict=fuzz/fuzz.dict -max_len="$2" -fork="$ncpus" \ + -max_total_time=1800 -runs=25000000 -rss_limit_mb=8192 -timeout=30 +./recursive-fuzz-cmin.sh "$1" "$2" echo "$(date): DONE BUILDING FUZZ CORPUS AT SIZE $2" \ No newline at end of file