From 08a21eb096db3827ea94e60a8102c971b44024be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 6 Oct 2019 19:13:15 +0100 Subject: [PATCH] parser/gotest: Fix output trimming --- pkg/parser/gotest/gotest.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/parser/gotest/gotest.go b/pkg/parser/gotest/gotest.go index 6a89e3a..2e15613 100644 --- a/pkg/parser/gotest/gotest.go +++ b/pkg/parser/gotest/gotest.go @@ -126,7 +126,9 @@ func (p *parser) benchmark(name, iterations, nsPerOp, mbPerSec, bytesPerOp, allo } func (p *parser) output(line string) { - p.add(gtr.Event{Type: "output", Data: strings.TrimPrefix(line, "\t")}) + line = strings.TrimPrefix(line, " ") + line = strings.TrimPrefix(line, "\t") + p.add(gtr.Event{Type: "output", Data: line}) } func parseSeconds(s string) time.Duration {