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:
Joël Stemmer 2022-03-20 00:07:39 +00:00
parent 3adb6bab4b
commit 1c7fff6728
3 changed files with 4 additions and 4 deletions

View File

@ -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"),
}, },
} }

View File

@ -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>

View File

@ -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>