mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Only run fuzz tests on Go versions that support it
This commit is contained in:
parent
9b4f5520f7
commit
292aab72b9
18
parser/gotest/gotest_fuzz_test.go
Normal file
18
parser/gotest/gotest_fuzz_test.go
Normal 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)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
@ -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)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user