parser/gotest: Trim tab prefix from output

This commit is contained in:
Joël Stemmer 2019-10-06 17:43:06 +01:00
parent 5f2324f6d4
commit 79753fd332

View File

@ -126,7 +126,7 @@ func (p *parser) benchmark(name, iterations, nsPerOp, mbPerSec, bytesPerOp, allo
} }
func (p *parser) output(line string) { func (p *parser) output(line string) {
p.add(gtr.Event{Type: "output", Data: line}) p.add(gtr.Event{Type: "output", Data: strings.TrimPrefix(line, "\t")})
} }
func parseSeconds(s string) time.Duration { func parseSeconds(s string) time.Duration {