junit: Change JUnit Result Data field to cdata

The Result Data field contains the test output that was read from stdin.
This used to be a chardata field, which escapes many characters in the
resulting XML. Writing this output with <![CDATA[]]> tags makes the raw
XML output much easier to read in e.g. a text editor.
This commit is contained in:
Joël Stemmer 2022-02-27 21:45:50 +00:00
parent fc0a210dc9
commit dde9ef5310

View File

@ -102,7 +102,7 @@ type Property struct {
type Result struct { type Result struct {
Message string `xml:"message,attr"` Message string `xml:"message,attr"`
Type string `xml:"type,attr,omitempty"` Type string `xml:"type,attr,omitempty"`
Data string `xml:",chardata"` Data string `xml:",cdata"`
} }
// FormatDuration returns the JUnit string representation of the given // FormatDuration returns the JUnit string representation of the given