aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2012-10-23 09:56:26 +0200
committerJiri Vanek <[email protected]>2012-10-23 09:56:26 +0200
commitc04ca02fec844a29e2d3983f7cce24ba07935964 (patch)
treeb48b31cc9cf26252a3ac273cf4344d79da14556b
parentb637daffa2aa9de8dff5351b99eccaa069fc87b8 (diff)
KnownToFail texts are now bold in html report
-rw-r--r--ChangeLog6
-rw-r--r--tests/report-styles/jreport.xsl6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index adca5b3..7b04857 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-10-23 Jiri Vanek <[email protected]>
+
+ KnownToFail texts are now bold in html report
+ * tests/report-styles/jreport.xsl: all text outputs of
+ test="@known-to-fail=true" conditions are marked with <b>.
+
2012-10-19 Adam Domurad <[email protected]>
* tests/reproducers/custom/AdditionalJarsInMetaInfIndexList/testcases/AdditionalJarsInMetaInfIndexListTests.java
diff --git a/tests/report-styles/jreport.xsl b/tests/report-styles/jreport.xsl
index cf9c58a..ccc6e6a 100644
--- a/tests/report-styles/jreport.xsl
+++ b/tests/report-styles/jreport.xsl
@@ -261,10 +261,10 @@ If there is no need for linking, please use value "none" for this variable
<xsl:when test="@known-to-fail">
<xsl:choose>
<xsl:when test="@known-to-fail=true">
- <xsl:text>" - WARNING This test is known to fail, but have passed!</xsl:text>
+ <b><xsl:text>" - WARNING This test is known to fail, but have passed!</xsl:text></b>
</xsl:when>
<xsl:otherwise>
- <xsl:text> - This test is known to fail</xsl:text>
+ <b><xsl:text> - This test is known to fail</xsl:text></b>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
@@ -276,7 +276,7 @@ If there is no need for linking, please use value "none" for this variable
FAILED (<xsl:value-of select="@time"/>s)
<xsl:choose>
<xsl:when test="@known-to-fail">
- <xsl:text> - This test is known to fail</xsl:text>
+ <b><xsl:text> - This test is known to fail</xsl:text></b>
</xsl:when>
</xsl:choose>
</div>