blob: 1ed0b8a6f75368e9bf87d739082dc0702fbe9b78 [file] [log] [blame]
Dan Willemsenbc60c3c2021-12-15 01:09:00 -08001[fuzz] skip
2
3! go test -fuzz=. -fuzztime=1x
4! stdout .
5stderr '^-fuzz flag is not supported on '$GOOS'/'$GOARCH'$'
6
7-- go.mod --
8module example
9
10go 1.18
11-- fuzz_test.go --
12package example
13
14import "testing"
15
16func FuzzTrivial(f *testing.F) {
17 f.Fuzz(func(t *testing.T, _ []byte) {})
18}