diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index 77e2d1b..ec46879 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -411,8 +411,20 @@ var tests = []struct { {Type: "status", Result: "PASS"}, {Type: "summary", Result: "ok", Name: "really/small", Duration: 4344 * time.Millisecond}, }}, - {"28-bench-1cpu", []gtr.Event{}}, - {"29-bench-16cpu", []gtr.Event{}}, + {"28-bench-1cpu", + []gtr.Event{ + {Type: "output", Data: "pkg: single/cpu"}, + {Type: "benchmark", Name: "BenchmarkRing", Iterations: 20000000, NsPerOp: 74.2}, + {Type: "status", Result: "PASS"}, + {Type: "summary", Result: "ok", Name: "single/cpu", Duration: 9467 * time.Millisecond}, + }}, + {"29-bench-16cpu", + []gtr.Event{ + {Type: "output", Data: "pkg: sixteen/cpu"}, + {Type: "benchmark", Name: "BenchmarkRingaround", Iterations: 100000, NsPerOp: 13571}, + {Type: "status", Result: "PASS"}, + {Type: "summary", Result: "ok", Name: "sixteen/cpu", Duration: 1522 * time.Millisecond}, + }}, {"30-stdout", []gtr.Event{}}, {"31-syntax-error-test-binary", []gtr.Event{}}, {"32-failed-summary", []gtr.Event{}},