mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00

The NsPerOp was previously casted to a time.Duration (int64) before multiplying it with the number of iterations. This has been fixed by doing the casting after the multiplication. The resulting duration should be a bit more accurate.
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="4">
|
|
<testsuite name="package/name/bench" tests="4" failures="0" errors="0" id="0" hostname="hostname" time="0.762" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="TestA" classname="package/name/bench" time="0.000">
|
|
<system-out><![CDATA[ a_test.go:6: ok]]></system-out>
|
|
</testcase>
|
|
<testcase name="TestZ" classname="package/name/bench" time="0.000">
|
|
<system-out><![CDATA[ z_test.go:6: ok]]></system-out>
|
|
</testcase>
|
|
<testcase name="BenchmarkTest" classname="package/name/bench" time="0.440700000">
|
|
<system-out><![CDATA[ bench_test.go:12: 1
|
|
bench_test.go:12: 100
|
|
bench_test.go:12: 10000
|
|
bench_test.go:12: 1000000
|
|
bench_test.go:12: 100000000
|
|
bench_test.go:12: 1000000000]]></system-out>
|
|
</testcase>
|
|
<testcase name="BenchmarkOtherTest" classname="package/name/bench" time="0.263900000"></testcase>
|
|
<system-out><![CDATA[goos: linux
|
|
goarch: amd64
|
|
pkg: package/name/bench]]></system-out>
|
|
</testsuite>
|
|
</testsuites>
|