Adds fuzzers and passes we've built since 2020 and before, that use oss-fuzz's continuous fuzzing infrastructure. Fixes #7921.
16 lines
246 B
Go
16 lines
246 B
Go
//go:build gofuzz || go1.18
|
|
|
|
package tests
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/crypto/hd"
|
|
)
|
|
|
|
func FuzzCryptoHDNewParamsFromPath(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
hd.NewParamsFromPath(string(data))
|
|
})
|
|
}
|