DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19301>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=19301 junitreport fails ------- Additional Comments From [EMAIL PROTECTED] 2003-04-25 12:51 ------- I tracked down the problem to the JS-escape template, which produces a StackOverFlowError with Xalan 2.5D1 if the string parameter passed to the template is too long, as can easily happen when processing the java.class.path property. Not sure where the real limit is, all I know is that 7952 characters is too much :-) A temporary fix is to simply skip any long values and display them as '...' instead: <xsl:when test="string-length($string) > 1000"> <xsl:text>...</xsl:text> </xsl:when>