Added count of skipped tests to default xsl style.

This commit is contained in:
Markus Kauppila
2011-07-21 13:57:55 +03:00
parent 8b612370f7
commit 2543e8b7e6
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ libtest_la_CLAGS = -fPIC -g
libtest_la_LDFLAGS = `sdl-config --libs`
libtest: libtest.la
echo "Test library compiled."
echo "Test library compiled."
all-local: install-tests
install: install-tests

View File

@@ -181,7 +181,7 @@ div, h1 {
<span class="title">Statistics:</span><br/>
<div class="statistics">
<span>Executed </span> <xsl:value-of select="testlog/numSuites"/> test suites. <br/>
<span>Tests in total: </span> <xsl:value-of select="testlog/numTests"/> (passed: <xsl:value-of select="testlog/numPassedTests"/>, failed: <xsl:value-of select="testlog/numFailedTests"/>)
<span>Tests in total: </span> <xsl:value-of select="testlog/numTests"/> (passed: <xsl:value-of select="testlog/numPassedTests"/>, failed: <xsl:value-of select="testlog/numFailedTests"/>, skipped: <xsl:value-of select="testlog/numSkippedTests"/>)
</div>
</div>