parser/gotest: Only run fuzz tests on Go versions that support it

This commit is contained in:
Joël Stemmer 2022-09-27 22:01:02 +01:00
parent 9b4f5520f7
commit 292aab72b9
2 changed files with 18 additions and 12 deletions

View File

@ -0,0 +1,18 @@
//go:build go1.18
// +build go1.18
package gotest
import "testing"
func FuzzParseLine(f *testing.F) {
for _, test := range parseLineTests {
f.Add(test.input)
}
f.Fuzz(func(t *testing.T, in string) {
events := NewParser().parseLine(in)
if len(events) == 0 {
t.Fatalf("parseLine(%q) did not return any results", in)
}
})
}

View File

@ -221,15 +221,3 @@ func TestParseLine(t *testing.T) {
}) })
} }
} }
func FuzzParseLine(f *testing.F) {
for _, test := range parseLineTests {
f.Add(test.input)
}
f.Fuzz(func(t *testing.T, in string) {
events := NewParser().parseLine(in)
if len(events) == 0 {
t.Fatalf("parseLine(%q) did not return any results", in)
}
})
}