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

Whitespace prefix of output lines was carried over from the old v1 version, but in some cases it removes too much whitespace. Ideally it would detect the common prefix of all output lines for a given text and only trim that. Until that's fixed, let's just stop removing the whitespace. Fixes #131
23 lines
972 B
XML
23 lines
972 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="3" failures="3">
|
|
<testsuite name="pkg/parallel" tests="3" failures="3" errors="0" hostname="hostname" time="3.010" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="FirstTest" classname="pkg/parallel" time="2.000">
|
|
<failure message="Failed"><![CDATA[Message from first
|
|
Supplemental from first
|
|
parallel_test.go:14: FirstTest error]]></failure>
|
|
</testcase>
|
|
<testcase name="SecondTest" classname="pkg/parallel" time="1.000">
|
|
<failure message="Failed"><![CDATA[Message from second
|
|
parallel_test.go:23: SecondTest error]]></failure>
|
|
</testcase>
|
|
<testcase name="ThirdTest" classname="pkg/parallel" time="0.010">
|
|
<failure message="Failed"><![CDATA[Message from third
|
|
parallel_test.go:32: ThirdTest error]]></failure>
|
|
</testcase>
|
|
<system-out><![CDATA[exit status 1]]></system-out>
|
|
</testsuite>
|
|
</testsuites>
|