Tweak fuzz-until-converged: try 5 iterations before quitting, and set iteration to 5 minutes
This commit is contained in:
parent
2be782065c
commit
c458eb9df5
1 changed files with 9 additions and 5 deletions
|
@ -1,13 +1,17 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
rm -r "fuzz/corpus/fuzz_$1_old"
|
rm -r "fuzz/corpus/fuzz_$1_old"
|
||||||
updated=1
|
MAX_ITERS_WITHOUT_IMPROVEMENT=5
|
||||||
while [[ $updated ]]; do
|
iters_without_improvement=0
|
||||||
updated=0
|
while [[ $iters_without_improvement -lt $MAX_ITERS_WITHOUT_IMPROVEMENT ]]; do
|
||||||
cp -r "fuzz/corpus/fuzz_$1" "fuzz/corpus/fuzz_$1_old"
|
cp -r "fuzz/corpus/fuzz_$1" "fuzz/corpus/fuzz_$1_old"
|
||||||
cargo fuzz run --all-features "fuzz_$1" "fuzz/corpus/fuzz_$1" -- \
|
cargo fuzz run --all-features "fuzz_$1" "fuzz/corpus/fuzz_$1" -- \
|
||||||
-dict=fuzz/fuzz.dict -max_len="$2" -rss_limit_mb=8192 \
|
-dict=fuzz/fuzz.dict -max_len="$2" -rss_limit_mb=8192 \
|
||||||
-fork="$(nproc || getconf NPROCESSORS_ONLN)" -runs=1000000
|
-fork="$(nproc || getconf NPROCESSORS_ONLN)" -max_total_time=300
|
||||||
./recursive-fuzz-cmin.sh "$1" "$2"
|
./recursive-fuzz-cmin.sh "$1" "$2"
|
||||||
updated=$(diff "fuzz/corpus/fuzz_$1" "fuzz/corpus/fuzz_$1_old")
|
if diff "fuzz/corpus/fuzz_$1" "fuzz/corpus/fuzz_$1_old"; then
|
||||||
|
iters_without_improvement=$(( iters_without_improvement + 1 ))
|
||||||
|
else
|
||||||
|
iters_without_improvement=0
|
||||||
|
fi
|
||||||
rm -r "fuzz/corpus/fuzz_$1_old"
|
rm -r "fuzz/corpus/fuzz_$1_old"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue