mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
junit: Rename "Run error" to "Runtime error" for dummy error tests
In cases where a test result is not found, for example when a panic happened, a dummy failing test is added to the report. Since we don't know exactly what failed, its error message was simply "Run error". This has been renamed to "Runtime error".
This commit is contained in:
parent
3adb6bab4b
commit
1c7fff6728
@ -220,7 +220,7 @@ func CreateFromReport(report gtr.Report, hostname string) Testsuites {
|
|||||||
Name: "Failure",
|
Name: "Failure",
|
||||||
Time: formatDuration(0),
|
Time: formatDuration(0),
|
||||||
Error: &Result{
|
Error: &Result{
|
||||||
Message: "Run error",
|
Message: "Runtime error",
|
||||||
Data: strings.Join(pkg.RunError.Output, "\n"),
|
Data: strings.Join(pkg.RunError.Output, "\n"),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
4
testdata/14-report.xml
vendored
4
testdata/14-report.xml
vendored
@ -5,7 +5,7 @@
|
|||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
<testcase name="Failure" classname="package/panic" time="0.000">
|
<testcase name="Failure" classname="package/panic" time="0.000">
|
||||||
<error message="Run error"><![CDATA[panic: init
|
<error message="Runtime error"><![CDATA[panic: init
|
||||||
stacktrace]]></error>
|
stacktrace]]></error>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
@ -14,7 +14,7 @@ stacktrace]]></error>
|
|||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
<testcase name="Failure" classname="package/panic2" time="0.000">
|
<testcase name="Failure" classname="package/panic2" time="0.000">
|
||||||
<error message="Run error"><![CDATA[panic: init
|
<error message="Runtime error"><![CDATA[panic: init
|
||||||
stacktrace]]></error>
|
stacktrace]]></error>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
|
2
testdata/32-report.xml
vendored
2
testdata/32-report.xml
vendored
@ -6,7 +6,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<testcase name="TestOne" classname="github.com/jstemmer/test/failedsummary" time="0.000"></testcase>
|
<testcase name="TestOne" classname="github.com/jstemmer/test/failedsummary" time="0.000"></testcase>
|
||||||
<testcase name="Failure" classname="github.com/jstemmer/test/failedsummary" time="0.000">
|
<testcase name="Failure" classname="github.com/jstemmer/test/failedsummary" time="0.000">
|
||||||
<error message="Run error"><![CDATA[panic: panic]]></error>
|
<error message="Runtime error"><![CDATA[panic: panic]]></error>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user