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
47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="1" failures="1">
|
|
<testsuite name="race_test" tests="1" failures="1" errors="0" hostname="hostname" time="0.015" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="TestRace" classname="race_test" time="0.000">
|
|
<failure message="Failed"><![CDATA[test output
|
|
2 0xc4200153d0
|
|
==================
|
|
WARNING: DATA RACE
|
|
Write at 0x00c4200153d0 by goroutine 7:
|
|
race_test.TestRace.func1()
|
|
race_test.go:13 +0x3b
|
|
|
|
Previous write at 0x00c4200153d0 by goroutine 6:
|
|
race_test.TestRace()
|
|
race_test.go:15 +0x136
|
|
testing.tRunner()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:657 +0x107
|
|
|
|
Goroutine 7 (running) created at:
|
|
race_test.TestRace()
|
|
race_test.go:14 +0x125
|
|
testing.tRunner()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:657 +0x107
|
|
|
|
Goroutine 6 (running) created at:
|
|
testing.(*T).Run()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:697 +0x543
|
|
testing.runTests.func1()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:882 +0xaa
|
|
testing.tRunner()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:657 +0x107
|
|
testing.runTests()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:888 +0x4e0
|
|
testing.(*M).Run()
|
|
/usr/local/Cellar/go/1.8.3/libexec/src/testing/testing.go:822 +0x1c3
|
|
main.main()
|
|
_test/_testmain.go:52 +0x20f
|
|
==================
|
|
testing.go:610: race detected during execution of test]]></failure>
|
|
</testcase>
|
|
<system-out><![CDATA[exit status 1]]></system-out>
|
|
</testsuite>
|
|
</testsuites>
|