https://bz.apache.org/bugzilla/show_bug.cgi?id=63436
Bug ID: 63436
Summary: JUnitLauncher Task does not embedd stdout/stderr
output in cdata
Product: Ant
Version: 1.10.6
Hardware: PC
Status: NEW
Severity: normal
Priority: P2
Component: Optional Tasks
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
If you use <listener type="legacy-xml" sendSysErr="true" sendSysOut="true"/> in
the Junit5 JUnitLauncher task, the output is not embedded in CDATA like it is
in JUnit Task.
This breaks the following junitreport Task if the sysout/syserr contains
invalid xml data which is very likely to happen for sysout/syserr.
Example:
(correct) JUnit Task produces:
<system-out><![CDATA[test ouput]]></system-out>
(incorrect) JUnitLauncher task produces:
<system-out>test ouput</system-out>
--
You are receiving this mail because:
You are the assignee for the bug.