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

Benchmark durations were originally formatted with higher precision because they contained just the NsPerOp field. Now that we're approximating the total duration they are more accurate and don't need as many decimals.
24 lines
997 B
XML
24 lines
997 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="4" errors="1" failures="2" skipped="1">
|
|
<testsuite name="package/name/benchfail" tests="4" failures="2" errors="1" id="0" hostname="hostname" skipped="1" time="0.002" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="BenchmarkError" classname="package/name/benchfail" time="0.000">
|
|
<failure message="Failed"></failure>
|
|
</testcase>
|
|
<testcase name="BenchmarkFatal" classname="package/name/benchfail" time="0.000">
|
|
<failure message="Failed"></failure>
|
|
</testcase>
|
|
<testcase name="BenchmarkSkip" classname="package/name/benchfail" time="0.000">
|
|
<skipped message="Skipped"></skipped>
|
|
</testcase>
|
|
<testcase name="Failure" classname="package/name/benchfail" time="0.000">
|
|
<error message="Runtime error"><![CDATA[goos: linux
|
|
goarch: amd64
|
|
pkg: package/name/benchfail
|
|
exit status 1]]></error>
|
|
</testcase>
|
|
</testsuite>
|
|
</testsuites>
|