Closed GoogleCodeExporter closed 9 years ago
This is by design.
The xml output we based on was from the "junit" ant task, which produces
separate xml
files for different testsuites. There is another ant task "junitreport", which
takes
all the xml files and combine them into one using xslt. It's the "junitreport"
task
that creates the top level "testsuits" element.
Original comment by shiq...@gmail.com
on 2 Dec 2008 at 4:51
I've set up an ant task to convert the xml output into a single XML report,
like so:
<junitreport>
<fileset dir="${basedir}/tests">
<include name="*.xml"/>
</fileset>
<report format="frames" todir="${basedir}/tests"/>
</junitreport>
...and then I told Hudson to use TESTS-TestSuite.xml as the junit test result.
Yet, it still is telling me that
none of the files contained any results, exactly the same result as when I
point it towards the raw XML output
generated by gtest. Why is this?
Original comment by njreiman@gmail.com
on 29 Dec 2008 at 2:35
Original issue reported on code.google.com by
mathias....@gmail.com
on 27 Nov 2008 at 7:46