From 292aab72b93b6c23766def387aac3dbc407ebb04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Tue, 27 Sep 2022 22:01:02 +0100 Subject: [PATCH] parser/gotest: Only run fuzz tests on Go versions that support it --- parser/gotest/gotest_fuzz_test.go | 18 ++++++++++++++++++ parser/gotest/gotest_test.go | 12 ------------ 2 files changed, 18 insertions(+), 12 deletions(-) create mode 100644 parser/gotest/gotest_fuzz_test.go diff --git a/parser/gotest/gotest_fuzz_test.go b/parser/gotest/gotest_fuzz_test.go new file mode 100644 index 0000000..983af9f --- /dev/null +++ b/parser/gotest/gotest_fuzz_test.go @@ -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) + } + }) +} diff --git a/parser/gotest/gotest_test.go b/parser/gotest/gotest_test.go index b2580d6..e4ec5a5 100644 --- a/parser/gotest/gotest_test.go +++ b/parser/gotest/gotest_test.go @@ -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) - } - }) -}