summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/testdata/script/test_fuzz_return.txt
blob: 63275aad01d64843f3fcab6d4b6800d18cb7d883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[short] skip

! go test .
stdout '^panic: testing: fuzz target must not return a value \[recovered\]$'

-- go.mod --
module test
go 1.18
-- x_test.go --
package test

import "testing"

func FuzzReturnErr(f *testing.F) {
	f.Add("hello, validation!")
	f.Fuzz(func(t *testing.T, in string) string {
		return in
	})
}