1[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}