I've noticed that the "Actual:" and "Reference:" links created by the Basescanner.xsl stylesheet don't work. I hacked the following change, but someone more familiar with the reporting system may have a better fix.
<xsl:text>Actual: </xsl:text>
<xsl:variable name="myactual" select="@actual" />
<xsl:element name="a">
<xsl:attribute name="href"><xsl:value-of select="substring-after($myactual, '/')"/></xsl:attribute>
<xsl:value-of select="@actual"/>
</xsl:element><br/>
<xsl:text>Reference: </xsl:text>
<!-- make href relative, sinc gold dir is not under the report dir but is under ...test/tests... -->
<xsl:variable name="relref" select="concat('../', @reference)" />
<xsl:element name="a">
<xsl:attribute name="href"><xsl:value-of select="$relref"/></xsl:attribute>
Also, I noticed that when you run the smoketest and everything passes the
ResultReport.html is somewhat confusing. I think the general format for the
conf and smoketests works well when there are errors to report, but when all goes
well it would be good if a simple summary were included, like:
Smoketest Results on Xalan
Conf Tests: Pass 1667 Fail: 0 Error: 0
Accept Tests: Pass: ### Fail: 0 Error: 0
API Tests: Pass: ### Fail: 0 Error: 0
Extensions: Pass: ### Fail: 0 Error: 0Thanks.
Tom
