A junitreport parsing error results if the output of the unit tests contains unescaped xml entities such as '<' or '>'. This can happen if the PLSQL you are testing uses xml. A fix is to modify Jutex.java, method getResultsFromutPLSQL(String) to output the failure message within a CDATA block, ie:
v_retval = v_retval + " <testcase name=\"" + rs3.getString("method") + "\" time=\"0.0\">" +
v_nl + " <failure type=\"??\"><![CDATA[" + rs3.getString("msg")+ "]]></failure>" +
v_nl + " </testcase>" + v_nl;
I will try to upload the patched file containing this line. You will also need a way to build the source code, anyone proficient with ant should be able to craft a build.xml easily.
Patched Jutex.java using CDATA for failure text
Ant build for Jutex.java patch
I couldn't find an ant build file for the source within this distribution or in CVS, so I've uploaded a simple build.xml. It builds a new jutex.jar using the Jutex.java patch I uploaded. Place this build.xml in the Code/ directory and invoke ant from there. Note: this build creates a new Code/build/jutex.jar, you have to manually copy/overwrite the original jutex.jar in the parent dir.