Increase iteration to 20M runs or 30 min
This commit is contained in:
parent
efb438cd37
commit
232bbc612e
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ 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" -fork="$ncpus" \
|
-dict=fuzz/fuzz.dict -max_len="$2" -fork="$ncpus" \
|
||||||
-max_total_time=900
|
-max_total_time=1800 -runs=20000000
|
||||||
./recursive-fuzz-cmin.sh "$1" "$2"
|
./recursive-fuzz-cmin.sh "$1" "$2"
|
||||||
if diff "fuzz/corpus/fuzz_$1" "fuzz/corpus/fuzz_$1_old"; then
|
if diff "fuzz/corpus/fuzz_$1" "fuzz/corpus/fuzz_$1_old"; then
|
||||||
iters_without_improvement=$(( iters_without_improvement + 1 ))
|
iters_without_improvement=$(( iters_without_improvement + 1 ))
|
||||||
|
|
Loading…
Add table
Reference in a new issue