-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add fuzz tests to nightly run (#2787)
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
echo "Running fuzz tests..." | ||
# manually specify the tests to fuzz since go toolchain doesn't support | ||
# fuzzing multiple packages with multiple fuzz tests | ||
go test -fuzz=FuzzNewInfoByte -fuzztime 1m ./pkg/shares | ||
go test -fuzz=FuzzValidSequenceLen -fuzztime 1m ./pkg/shares | ||
go test -fuzz=FuzzSquare -fuzztime 5m ./pkg/square | ||
go test -fuzz=FuzzPFBGasEstimation -fuzztime 3m ./x/blob/types |