Skip to content

Commit

Permalink
add a script to run all the fuzz tests a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jrockway committed Jun 16, 2022
1 parent 6dd46ac commit 68278ee
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions fuzz.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

for t in `go test -list Fuzz ./pkg/parse | egrep -v '^(ok|\?)'`; do
echo $t
go test -fuzz="^${t}$" -fuzztime=10s ./pkg/parse
echo "---"
done;

0 comments on commit 68278ee

Please sign in to comment.