/hg/icedtea-web: KnownToFail texts are now bold in html report

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Tue Oct 23 00:51:06 PDT 2012


changeset c52fcd37dbd8 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=c52fcd37dbd8
author: Jiri Vanek <jvanek at redhat.com>
date: Tue Oct 23 09:56:26 2012 +0200

	KnownToFail texts are now bold in html report


diffstat:

 ChangeLog                       |  6 ++++++
 tests/report-styles/jreport.xsl |  6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

diffs (38 lines):

diff -r 52aca680875f -r c52fcd37dbd8 ChangeLog
--- a/ChangeLog	Mon Oct 22 12:42:14 2012 -0400
+++ b/ChangeLog	Tue Oct 23 09:56:26 2012 +0200
@@ -1,3 +1,9 @@
+2012-10-23  Jiri Vanek <jvanek at redhat.com>
+
+	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  <adomurad at redhat.com>
 
 	* tests/reproducers/custom/AdditionalJarsInMetaInfIndexList/testcases/AdditionalJarsInMetaInfIndexListTests.java
diff -r 52aca680875f -r c52fcd37dbd8 tests/report-styles/jreport.xsl
--- a/tests/report-styles/jreport.xsl	Mon Oct 22 12:42:14 2012 -0400
+++ b/tests/report-styles/jreport.xsl	Tue Oct 23 09:56:26 2012 +0200
@@ -261,10 +261,10 @@
            <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 @@
         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>



More information about the distro-pkg-dev mailing list