mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
gtr, parser/gotest: Move output formatting out of parser
This commit is contained in:
parent
08a21eb096
commit
3f9d5b62db
@ -113,11 +113,11 @@ func JUnit(report Report) junit.Testsuites {
|
||||
if test.Result == Fail {
|
||||
tc.Failure = &junit.Result{
|
||||
Message: "Failed",
|
||||
Data: strings.Join(test.Output, "\n"),
|
||||
Data: formatOutput(test.Output),
|
||||
}
|
||||
} else if test.Result == Skip {
|
||||
tc.Skipped = &junit.Result{
|
||||
Message: strings.Join(test.Output, "\n"),
|
||||
Message: formatOutput(test.Output),
|
||||
}
|
||||
}
|
||||
|
||||
@ -150,6 +150,16 @@ func JUnit(report Report) junit.Testsuites {
|
||||
return suites
|
||||
}
|
||||
|
||||
func formatOutput(output []string) string {
|
||||
var lines []string
|
||||
for _, line := range output {
|
||||
line = strings.TrimPrefix(line, " ")
|
||||
line = strings.TrimPrefix(line, "\t")
|
||||
lines = append(lines, line)
|
||||
}
|
||||
return strings.Join(lines, "\n")
|
||||
}
|
||||
|
||||
func mergeBenchmarks(benchmarks []Benchmark) []Benchmark {
|
||||
var merged []Benchmark
|
||||
|
||||
|
@ -126,8 +126,6 @@ func (p *parser) benchmark(name, iterations, nsPerOp, mbPerSec, bytesPerOp, allo
|
||||
}
|
||||
|
||||
func (p *parser) output(line string) {
|
||||
line = strings.TrimPrefix(line, " ")
|
||||
line = strings.TrimPrefix(line, "\t")
|
||||
p.add(gtr.Event{Type: "output", Data: line})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user