diff --git a/pkg/parser/gotest/gotest.go b/pkg/parser/gotest/gotest.go index 7721e61..9fd0961 100644 --- a/pkg/parser/gotest/gotest.go +++ b/pkg/parser/gotest/gotest.go @@ -15,7 +15,7 @@ import ( var ( // regexBenchmark captures 3-5 groups: benchmark name, number of times ran, ns/op (with or without decimal), B/op (optional), and allocs/op (optional). - regexBenchmark = regexp.MustCompile(`^(Benchmark[^ -]+)(?:-\d+\s+|\s+)(\d+)\s+(\d+|\d+\.\d+)\sns\/op(?:\s+(\d+)\sB\/op)?(?:\s+(\d+)\\sallocs/op)?`) + regexBenchmark = regexp.MustCompile(`^(Benchmark[^ -]+)(?:-\d+\s+|\s+)(\d+)\s+(\d+|\d+\.\d+)\sns\/op(?:\s+(\d+)\sB\/op)?(?:\s+(\d+)\sallocs/op)?`) regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+|\d+\.\d+)%\s+of\s+statements(?:\sin\s(.+))?$`) regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`) regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`) diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index 26db5fc..ac98070 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -342,7 +342,16 @@ var tests = []struct { {Type: "status", Result: "PASS"}, {Type: "summary", Result: "ok", Name: "package/basic", Duration: 3212 * time.Millisecond}, }}, - {"23-benchmem", []gtr.Event{}}, + {"23-benchmem", + []gtr.Event{ + {Type: "output", Data: "goos: darwin"}, + {Type: "output", Data: "goarch: amd64"}, + {Type: "output", Data: "pkg: code.internal/state"}, + {Type: "benchmark", Name: "BenchmarkIpsHistoryInsert", Iterations: 30000, NsPerOp: 52568, BytesPerOp: 24879, AllocsPerOp: 494}, + {Type: "benchmark", Name: "BenchmarkIpsHistoryLookup", Iterations: 100000, NsPerOp: 15208, BytesPerOp: 7369, AllocsPerOp: 143}, + {Type: "status", Result: "PASS"}, + {Type: "summary", Result: "ok", Name: "package/one", Duration: 9415 * time.Millisecond}, + }}, {"24-benchtests", []gtr.Event{}}, {"25-benchcount", []gtr.Event{}}, {"26-testbenchmultiple", []gtr.Event{}},