parser/gotest: Add TODO to remove the build_output type

This commit is contained in:
Joël Stemmer 2022-03-06 00:06:50 +00:00
parent bab26d76b5
commit e2a7c1a394

View File

@ -55,6 +55,7 @@ func (p *parser) parseLine(line string) {
} else if matches := regexBenchmark.FindStringSubmatch(line); len(matches) == 7 {
p.benchmark(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6])
} 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, "# "))
if len(fields) == 1 || len(fields) == 2 {
p.buildOutput(fields[0])