## what additional things to distribute
-EXTRA_DIST = SVNChangeLog ChangeLogOld check.pc.in $(m4data_DATA)
+EXTRA_DIST = SVNChangeLog ChangeLogOld check.pc.in $(m4data_DATA) xml/check_unittest.xslt
## install docs
docdir = $(datadir)/doc/$(PACKAGE)
* Added checkmk, a tool for reducing "boilerplate coding" when writing
unit tests with check.
+* Added xslt link to xml output, added display of iteration field into xslt
+ stylesheet and moved it to directory accessible from web page root
+
Tue, Sep 22, 2009: Released Check 0.9.8
based on r559 (2009-09-23 21:00).
switch (evt) {
case CLINITLOG_SR:
fprintf(file, "<?xml version=\"1.0\"?>\n");
+ fprintf(file, "<?xml-stylesheet type=\"text/xsl\" href=\"http://check.sourceforge.net/xml/check_unittest.xslt\"?>\n");
fprintf(file, "<testsuites xmlns=\"http://check.sourceforge.net/ns\">\n");
fprintf(file, " <datetime>%s</datetime>\n", t);
break;
fi
expected="<?xml version=\"1.0\"?>
+<?xml-stylesheet type=\"text/xsl\" href=\"http://check.sourceforge.net/xml/check_unittest.xslt\"?>
<testsuites xmlns=\"http://check.sourceforge.net/ns\">
<suite>
<title>S1</title>
<td>Path</td>
<td>Filename</td>
<td>Test ID</td>
+ <td>Iteration</td>
<td>Description</td>
<td>Message</td>
</tr>
<td><xsl:apply-templates/></td>
</xsl:template>
+<xsl:template match="c:iteration">
+ <td><xsl:apply-templates/></td>
+</xsl:template>
+
<xsl:template match="c:description">
<td><xsl:apply-templates/></td>
</xsl:template>
</xsl:stylesheet>
-