mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
junit: Make Testsuites.ID a required field
This commit is contained in:
parent
fb0aeb9fda
commit
9bc291d7ca
@ -43,11 +43,11 @@ type Testsuite struct {
|
||||
Tests int `xml:"tests,attr"`
|
||||
Failures int `xml:"failures,attr"`
|
||||
Errors int `xml:"errors,attr"`
|
||||
ID int `xml:"id,attr"`
|
||||
|
||||
// optional attributes
|
||||
Disabled int `xml:"disabled,attr,omitempty"`
|
||||
Hostname string `xml:"hostname,attr,omitempty"`
|
||||
ID int `xml:"id,attr,omitempty"`
|
||||
Package string `xml:"package,attr,omitempty"`
|
||||
Skipped int `xml:"skipped,attr,omitempty"`
|
||||
Time string `xml:"time,attr"` // duration in seconds
|
||||
@ -136,6 +136,7 @@ func CreateFromReport(report gtr.Report, hostname string) Testsuites {
|
||||
suite := Testsuite{
|
||||
Name: pkg.Name,
|
||||
Hostname: hostname,
|
||||
ID: len(suites.Suites),
|
||||
}
|
||||
|
||||
if !pkg.Timestamp.IsZero() {
|
||||
|
@ -32,6 +32,7 @@ func TestCreateFromReport(t *testing.T) {
|
||||
Tests: 1,
|
||||
Failures: 1,
|
||||
Time: "0.000",
|
||||
ID: 0,
|
||||
Testcases: []Testcase{
|
||||
{
|
||||
Name: "BenchmarkFail",
|
||||
@ -64,7 +65,7 @@ func TestMarshalUnmarshal(t *testing.T) {
|
||||
Errors: 1,
|
||||
Failures: 1,
|
||||
Hostname: "localhost",
|
||||
ID: 1,
|
||||
ID: 0,
|
||||
Package: "package",
|
||||
Skipped: 1,
|
||||
Time: "12.345",
|
||||
|
6
testdata/001-report.xml
vendored
6
testdata/001-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="5" failures="1" skipped="2">
|
||||
<testsuite name="package/pass" tests="2" failures="0" errors="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/pass" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -12,7 +12,7 @@
|
||||
line]]></system-out>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/fail" tests="1" failures="1" errors="0" hostname="hostname" time="0.151" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/fail" tests="1" failures="1" errors="0" id="1" hostname="hostname" time="0.151" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -23,7 +23,7 @@
|
||||
message.]]></failure>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/skip" tests="2" failures="0" errors="0" hostname="hostname" skipped="2" time="0.150" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/skip" tests="2" failures="0" errors="0" id="2" hostname="hostname" skipped="2" time="0.150" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/005-report.xml
vendored
2
testdata/005-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/pass" tests="2" failures="0" errors="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/pass" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/007-report.xml
vendored
2
testdata/007-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="test/package" tests="2" failures="0" errors="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="test/package" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/008-report.xml
vendored
2
testdata/008-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3" failures="3">
|
||||
<testsuite name="package/parallel" tests="3" failures="3" errors="0" hostname="hostname" time="0.102" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/parallel" tests="3" failures="3" errors="0" id="0" hostname="hostname" time="0.102" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/009-report.xml
vendored
2
testdata/009-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/name" tests="2" failures="0" errors="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
<property name="coverage.statements.pct" value="13.37"></property>
|
||||
|
4
testdata/010-report.xml
vendored
4
testdata/010-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3">
|
||||
<testsuite name="package1/foo" tests="2" failures="0" errors="0" hostname="hostname" time="0.400" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package1/foo" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.400" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
<property name="coverage.statements.pct" value="10.00"></property>
|
||||
@ -8,7 +8,7 @@
|
||||
<testcase name="TestA" classname="package1/foo" time="0.100"></testcase>
|
||||
<testcase name="TestB" classname="package1/foo" time="0.300"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package2/bar" tests="1" failures="0" errors="0" hostname="hostname" time="4.200" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package2/bar" tests="1" failures="0" errors="0" id="1" hostname="hostname" time="4.200" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
<property name="coverage.statements.pct" value="99.80"></property>
|
||||
|
2
testdata/011-report.xml
vendored
2
testdata/011-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/name" tests="2" failures="0" errors="0" hostname="hostname" time="0.050" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.050" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/012-report.xml
vendored
2
testdata/012-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="11" failures="4" skipped="1">
|
||||
<testsuite name="package/subtests" tests="11" failures="4" errors="0" hostname="hostname" skipped="1" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/subtests" tests="11" failures="4" errors="0" id="0" hostname="hostname" skipped="1" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
10
testdata/013-report.xml
vendored
10
testdata/013-report.xml
vendored
@ -1,18 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="5" errors="3">
|
||||
<testsuite name="package/name/passing1" tests="1" failures="0" errors="0" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/passing1" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase name="TestA" classname="package/name/passing1" time="0.100"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/passing2" tests="1" failures="0" errors="0" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/passing2" tests="1" failures="0" errors="0" id="1" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase name="TestB" classname="package/name/passing2" time="0.100"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/failing1" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/failing1" tests="1" failures="0" errors="1" id="2" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -20,7 +20,7 @@
|
||||
<error message="Build error"><![CDATA[failing1/failing_test.go:15: undefined: x]]></error>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/failing2" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/failing2" tests="1" failures="0" errors="1" id="3" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -28,7 +28,7 @@
|
||||
<error message="Build error"><![CDATA[failing2/another_failing_test.go:20: undefined: y]]></error>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/setupfailing1" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/setupfailing1" tests="1" failures="0" errors="1" id="4" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
4
testdata/014-report.xml
vendored
4
testdata/014-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2" errors="2">
|
||||
<testsuite name="package/panic" tests="1" failures="0" errors="1" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/panic" tests="1" failures="0" errors="1" id="0" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -9,7 +9,7 @@
|
||||
stacktrace]]></error>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/panic2" tests="1" failures="0" errors="1" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/panic2" tests="1" failures="0" errors="1" id="1" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/015-report.xml
vendored
2
testdata/015-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite name="package/empty" tests="0" failures="0" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/empty" tests="0" failures="0" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/016-report.xml
vendored
2
testdata/016-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3">
|
||||
<testsuite name="package/repeated-names" tests="3" failures="0" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/repeated-names" tests="3" failures="0" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/017-report.xml
vendored
2
testdata/017-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1" failures="1">
|
||||
<testsuite name="package/race" tests="1" failures="1" errors="0" hostname="hostname" time="0.005" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/race" tests="1" failures="1" errors="0" id="0" hostname="hostname" time="0.005" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
4
testdata/018-report.xml
vendored
4
testdata/018-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3">
|
||||
<testsuite name="package1/foo" tests="2" failures="0" errors="0" hostname="hostname" time="0.400" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package1/foo" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.400" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
<property name="coverage.statements.pct" value="10.00"></property>
|
||||
@ -8,7 +8,7 @@
|
||||
<testcase name="TestA" classname="package1/foo" time="0.100"></testcase>
|
||||
<testcase name="TestB" classname="package1/foo" time="0.300"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package2/bar" tests="1" failures="0" errors="0" hostname="hostname" time="4.200" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package2/bar" tests="1" failures="0" errors="0" id="1" hostname="hostname" time="4.200" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
<property name="coverage.statements.pct" value="99.80"></property>
|
||||
|
2
testdata/019-report.xml
vendored
2
testdata/019-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/name" tests="2" failures="0" errors="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="0.160" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/021-report.xml
vendored
2
testdata/021-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1">
|
||||
<testsuite name="package/one" tests="1" failures="0" errors="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/one" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/022-report.xml
vendored
2
testdata/022-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/basic" tests="2" failures="0" errors="0" hostname="hostname" time="3.212" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/basic" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="3.212" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/023-report.xml
vendored
2
testdata/023-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/one" tests="2" failures="0" errors="0" hostname="hostname" time="9.415" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/one" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="9.415" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/024-report.xml
vendored
2
testdata/024-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="package/bench" tests="2" failures="0" errors="0" hostname="hostname" time="1.642" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/bench" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="1.642" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/025-report.xml
vendored
2
testdata/025-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="pkg/count" tests="2" failures="0" errors="0" hostname="hostname" time="14.211" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="pkg/count" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="14.211" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
4
testdata/026-report.xml
vendored
4
testdata/026-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="6">
|
||||
<testsuite name="mycode/common" tests="2" failures="0" errors="0" hostname="hostname" time="7.267" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="mycode/common" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="7.267" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -8,7 +8,7 @@
|
||||
<testcase name="BenchmarkNewTask" classname="mycode/common" time="1.173000000"></testcase>
|
||||
<system-out><![CDATA[pkg: mycode/common]]></system-out>
|
||||
</testsuite>
|
||||
<testsuite name="mycode/benchmarks/channels" tests="4" failures="0" errors="0" hostname="hostname" time="47.084" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="mycode/benchmarks/channels" tests="4" failures="0" errors="0" id="1" hostname="hostname" time="47.084" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/027-report.xml
vendored
2
testdata/027-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3">
|
||||
<testsuite name="really/small" tests="3" failures="0" errors="0" hostname="hostname" time="4.344" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="really/small" tests="3" failures="0" errors="0" id="0" hostname="hostname" time="4.344" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/028-report.xml
vendored
2
testdata/028-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1">
|
||||
<testsuite name="single/cpu" tests="1" failures="0" errors="0" hostname="hostname" time="9.467" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="single/cpu" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="9.467" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/029-report.xml
vendored
2
testdata/029-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1">
|
||||
<testsuite name="sixteen/cpu" tests="1" failures="0" errors="0" hostname="hostname" time="1.522" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="sixteen/cpu" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="1.522" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/030-report.xml
vendored
2
testdata/030-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="17" failures="9">
|
||||
<testsuite name="package/stdout" tests="17" failures="9" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/stdout" tests="17" failures="9" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
10
testdata/031-report.xml
vendored
10
testdata/031-report.xml
vendored
@ -1,18 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="5" errors="3">
|
||||
<testsuite name="package/name/passing1" tests="1" failures="0" errors="0" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/passing1" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase name="TestA" classname="package/name/passing1" time="0.100"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/passing2" tests="1" failures="0" errors="0" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/passing2" tests="1" failures="0" errors="0" id="1" hostname="hostname" time="0.100" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase name="TestB" classname="package/name/passing2" time="0.100"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/failing1" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/failing1" tests="1" failures="0" errors="1" id="2" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -20,7 +20,7 @@
|
||||
<error message="Build error"><![CDATA[failing1/failing_test.go:15: undefined: x]]></error>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/failing2" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/failing2" tests="1" failures="0" errors="1" id="3" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -28,7 +28,7 @@
|
||||
<error message="Build error"><![CDATA[failing2/another_failing_test.go:20: undefined: y]]></error>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/setupfailing1" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/setupfailing1" tests="1" failures="0" errors="1" id="4" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/032-report.xml
vendored
2
testdata/032-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2" errors="1">
|
||||
<testsuite name="github.com/jstemmer/test/failedsummary" tests="2" failures="0" errors="1" hostname="hostname" time="0.005" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="github.com/jstemmer/test/failedsummary" tests="2" failures="0" errors="1" id="0" hostname="hostname" time="0.005" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/033-report.xml
vendored
2
testdata/033-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2">
|
||||
<testsuite name="compress/flate" tests="2" failures="0" errors="0" hostname="hostname" time="83.202" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="compress/flate" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="83.202" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
6
testdata/034-report.xml
vendored
6
testdata/034-report.xml
vendored
@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite name="package/name" tests="0" failures="0" errors="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="0" failures="0" errors="0" id="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
</testsuite>
|
||||
<testsuite name="package/name" tests="0" failures="0" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="0" failures="0" errors="0" id="1" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
</testsuite>
|
||||
<testsuite name="package/name" tests="0" failures="0" errors="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="0" failures="0" errors="0" id="2" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/035-report.xml
vendored
2
testdata/035-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="9">
|
||||
<testsuite name="package/whitespace" tests="9" failures="0" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/whitespace" tests="9" failures="0" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/036-report.xml
vendored
2
testdata/036-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?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" hostname="hostname" skipped="1" time="0.002" timestamp="2022-01-01T00:00:00Z">
|
||||
<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>
|
||||
|
2
testdata/037-report.xml
vendored
2
testdata/037-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2" failures="1">
|
||||
<testsuite name="package/name" tests="2" failures="1" errors="0" hostname="hostname" time="0.151" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name" tests="2" failures="1" errors="0" id="0" hostname="hostname" time="0.151" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/100-report.xml
vendored
2
testdata/100-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1">
|
||||
<testsuite name="package/name/ok" tests="1" failures="0" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/ok" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/101-report.xml
vendored
2
testdata/101-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2" failures="1">
|
||||
<testsuite name="package/name/fail" tests="2" failures="1" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/fail" tests="2" failures="1" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/102-report.xml
vendored
2
testdata/102-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1" errors="1">
|
||||
<testsuite name="package/name/broken" tests="1" failures="0" errors="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/broken" tests="1" failures="0" errors="1" id="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/103-report.xml
vendored
2
testdata/103-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="4" failures="2">
|
||||
<testsuite name="package/name/subtest" tests="4" failures="2" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/subtest" tests="4" failures="2" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/104-report.xml
vendored
2
testdata/104-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1" failures="1">
|
||||
<testsuite name="package/name/race" tests="1" failures="1" errors="0" hostname="hostname" time="0.005" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/race" tests="1" failures="1" errors="0" id="0" hostname="hostname" time="0.005" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/105-report.xml
vendored
2
testdata/105-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="1" errors="1">
|
||||
<testsuite name="package/name/panic" tests="1" failures="0" errors="1" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/panic" tests="1" failures="0" errors="1" id="0" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
6
testdata/106-report.xml
vendored
6
testdata/106-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3" errors="1">
|
||||
<testsuite name="package/name/main/ack" tests="1" failures="0" errors="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/main/ack" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -8,7 +8,7 @@
|
||||
<system-out><![CDATA[ ack_test.go:13: ack]]></system-out>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/main/ok" tests="1" failures="0" errors="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/main/ok" tests="1" failures="0" errors="0" id="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
@ -16,7 +16,7 @@
|
||||
<system-out><![CDATA[ ok_test.go:13: ok]]></system-out>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
<testsuite name="package/name/main/fail" tests="1" failures="0" errors="1" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/main/fail" tests="1" failures="0" errors="1" id="2" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/107-report.xml
vendored
2
testdata/107-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2" skipped="2">
|
||||
<testsuite name="package/name/skip" tests="2" failures="0" errors="0" hostname="hostname" skipped="2" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/skip" tests="2" failures="0" errors="0" id="0" hostname="hostname" skipped="2" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/108-report.xml
vendored
2
testdata/108-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="2" errors="1">
|
||||
<testsuite name="package/name/paniclate" tests="2" failures="0" errors="1" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/paniclate" tests="2" failures="0" errors="1" id="0" hostname="hostname" time="0.003" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/109-report.xml
vendored
2
testdata/109-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="4">
|
||||
<testsuite name="package/name/bench" tests="4" failures="0" errors="0" hostname="hostname" time="0.762" timestamp="2022-01-01T00:00:00Z">
|
||||
<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>
|
||||
|
2
testdata/110-report.xml
vendored
2
testdata/110-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?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" hostname="hostname" skipped="1" time="0.002" timestamp="2022-01-01T00:00:00Z">
|
||||
<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>
|
||||
|
2
testdata/111-report.xml
vendored
2
testdata/111-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite name="package/name/empty" tests="0" failures="0" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/empty" tests="0" failures="0" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
2
testdata/112-report.xml
vendored
2
testdata/112-report.xml
vendored
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="3" failures="3">
|
||||
<testsuite name="package/name/parallel" tests="3" failures="3" errors="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<testsuite name="package/name/parallel" tests="3" failures="3" errors="0" id="0" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
|
Loading…
x
Reference in New Issue
Block a user