Skip to content

Commit f76a2e7

Browse files
authored
Merge pull request #81 from julianharty/fuzz-bash-fix
The fuzz-all.sh now runs each fuzz test for 20 mins (1200 seconds).
2 parents b63f7b4 + edabae9 commit f76a2e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/fuzz-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ fuzz_list_cmd="cargo fuzz list"
44

55
$fuzz_list_cmd | while read -r target; do
66
echo "----- fuzzing $target ------"
7-
RUST_BACKTRACE=1 cargo fuzz run "$target" -- -timeout=300
7+
RUST_BACKTRACE=1 cargo fuzz run "$target" -- -max_total_time="${1:-1200}"
88
done

0 commit comments

Comments
 (0)