mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Add TODO to remove the build_output type
This commit is contained in:
parent
bab26d76b5
commit
e2a7c1a394
@ -55,6 +55,7 @@ func (p *parser) parseLine(line string) {
|
|||||||
} else if matches := regexBenchmark.FindStringSubmatch(line); len(matches) == 7 {
|
} else if matches := regexBenchmark.FindStringSubmatch(line); len(matches) == 7 {
|
||||||
p.benchmark(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6])
|
p.benchmark(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6])
|
||||||
} else if strings.HasPrefix(line, "# ") {
|
} else if strings.HasPrefix(line, "# ") {
|
||||||
|
// TODO(jstemmer): this should just be output; we should detect build output when building report
|
||||||
fields := strings.Fields(strings.TrimPrefix(line, "# "))
|
fields := strings.Fields(strings.TrimPrefix(line, "# "))
|
||||||
if len(fields) == 1 || len(fields) == 2 {
|
if len(fields) == 1 || len(fields) == 2 {
|
||||||
p.buildOutput(fields[0])
|
p.buildOutput(fields[0])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user