From 84801b696c46855c5f9cf3fe6209a27d1d39bee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 5 Oct 2019 19:14:34 +0100 Subject: [PATCH] parser/gotest: Add tests 28 and 29 --- pkg/parser/gotest/gotest_test.go | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) 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{}},