File size: 283 Bytes
e36aeda | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | [fuzz] skip
! go test -fuzz=. -fuzztime=1x
! stdout .
stderr '^-fuzz flag is not supported on '$GOOS'/'$GOARCH'$'
-- go.mod --
module example
go 1.18
-- fuzz_test.go --
package example
import "testing"
func FuzzTrivial(f *testing.F) {
f.Fuzz(func(t *testing.T, _ []byte) {})
}
|