Increase iteration to 15M runs or 15 minutes
This commit is contained in:
parent
3422c9586b
commit
a53d8e3fbd
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@ 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=10000000 \
|
-fork="$(nproc || getconf NPROCESSORS_ONLN)" -runs=15000000 \
|
||||||
-max_total_time=600
|
-max_total_time=900
|
||||||
./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