Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added count of skipped tests to default xsl style.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Jul 21, 2011
1 parent 24ca1fd commit 2d1a635
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test-automation/Makefile.am
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/test-automation/style.xsl
Expand Up @@ -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>

Expand Down

0 comments on commit 2d1a635

Please sign in to comment.