mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
Move -count parameter to bench example and a little cleanup
This commit is contained in:
parent
b27aeca3e6
commit
56afb484ae
@ -32,12 +32,12 @@ go-junit-report reads the `go test` verbose output from standard in and writes
|
|||||||
junit compatible XML to standard out.
|
junit compatible XML to standard out.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
go test -v -count 5 2>&1 | go-junit-report > report.xml
|
go test -v 2>&1 | go-junit-report > report.xml
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that it also can parse benchmark output with `-bench` flag:
|
Note that it also can parse benchmark output with `-bench` flag:
|
||||||
```bash
|
```bash
|
||||||
go test -v -bench . 2>&1 | ./go-junit-report > report.xml
|
go test -v -bench . -count 5 2>&1 | ./go-junit-report > report.xml
|
||||||
```
|
```
|
||||||
|
|
||||||
[travis-badge]: https://travis-ci.org/jstemmer/go-junit-report.svg
|
[travis-badge]: https://travis-ci.org/jstemmer/go-junit-report.svg
|
||||||
|
@ -121,7 +121,6 @@ func JUnitReportXML(report *parser.Report, noXMLHeader bool, goVersion string, w
|
|||||||
Classname: classname,
|
Classname: classname,
|
||||||
Name: benchmark.Name,
|
Name: benchmark.Name,
|
||||||
Time: formatBenchmarkTime(benchmark.Duration),
|
Time: formatBenchmarkTime(benchmark.Duration),
|
||||||
Failure: nil,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ts.TestCases = append(ts.TestCases, benchmarkCase)
|
ts.TestCases = append(ts.TestCases, benchmarkCase)
|
||||||
|
@ -84,7 +84,7 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
|
|||||||
// sum of tests' time, use this if current test has no result line (when it is compiled test)
|
// sum of tests' time, use this if current test has no result line (when it is compiled test)
|
||||||
var testsTime time.Duration
|
var testsTime time.Duration
|
||||||
|
|
||||||
// current test or benchmark
|
// current test
|
||||||
var cur string
|
var cur string
|
||||||
|
|
||||||
// keep track if we've already seen a summary for the current test
|
// keep track if we've already seen a summary for the current test
|
||||||
@ -164,7 +164,6 @@ func Parse(r io.Reader, pkgName string) (*Report, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// all tests in this package are finished
|
// all tests in this package are finished
|
||||||
|
|
||||||
report.Packages = append(report.Packages, Package{
|
report.Packages = append(report.Packages, Package{
|
||||||
Name: matches[2],
|
Name: matches[2],
|
||||||
Duration: parseSeconds(matches[3]),
|
Duration: parseSeconds(matches[3]),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user