Commit 04bcf13d authored by Markus Kauppila's avatar Markus Kauppila

Added count of skipped tests to default xsl style.

parent 1ba2041d
...@@ -15,7 +15,7 @@ libtest_la_CLAGS = -fPIC -g ...@@ -15,7 +15,7 @@ libtest_la_CLAGS = -fPIC -g
libtest_la_LDFLAGS = `sdl-config --libs` libtest_la_LDFLAGS = `sdl-config --libs`
libtest: libtest.la libtest: libtest.la
echo "Test library compiled." echo "Test library compiled."
all-local: install-tests all-local: install-tests
install: install-tests install: install-tests
......
...@@ -181,7 +181,7 @@ div, h1 { ...@@ -181,7 +181,7 @@ div, h1 {
<span class="title">Statistics:</span><br/> <span class="title">Statistics:</span><br/>
<div class="statistics"> <div class="statistics">
<span>Executed </span> <xsl:value-of select="testlog/numSuites"/> test suites. <br/> <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>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment