Update of /cvsroot/boost/boost/tools/regression/xsl_reports/xsl/v2
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23344

Modified Files:
        result_page.xsl common.xsl 
Log Message:
Merge report fixes from RC_1_34_0

Index: result_page.xsl
===================================================================
RCS file: 
/cvsroot/boost/boost/tools/regression/xsl_reports/xsl/v2/result_page.xsl,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- result_page.xsl     11 Jun 2006 04:30:07 -0000      1.27
+++ result_page.xsl     18 Nov 2006 15:12:40 -0000      1.28
@@ -102,6 +102,8 @@
             <xsl:when test="$test_type='run_fail'">     
<xsl:text>rf</xsl:text> </xsl:when>
             <xsl:when test="$test_type='compile'">      <xsl:text>c</xsl:text> 
 </xsl:when>
             <xsl:when test="$test_type='compile_fail'"> 
<xsl:text>cf</xsl:text> </xsl:when>
+            <xsl:when test="$test_type='link'">         <xsl:text>l</xsl:text> 
</xsl:when>
+            <xsl:when test="$test_type='link_fail'">    
<xsl:text>lf</xsl:text> </xsl:when>
             <xsl:otherwise>
                 <xsl:message terminate="yes">Incorrect test type 
"<xsl:value-of select="$test_type"/>"</xsl:message>
             </xsl:otherwise>

Index: common.xsl
===================================================================
RCS file: /cvsroot/boost/boost/tools/regression/xsl_reports/xsl/v2/common.xsl,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- common.xsl  6 Dec 2005 14:21:14 -0000       1.37
+++ common.xsl  18 Nov 2006 15:12:40 -0000      1.38
@@ -147,8 +147,10 @@
     </func:function>
 
     <func:function name="meta:is_test_log_a_test_case">
-        <xsl:param name="test_log"/>      
-        <func:result select="$test_log/@test-type='compile' or 
$test_log/@test-type='compile_fail' or $test_log/@test-type='run' or 
$test_log/@test-type='run_pyd'"/>
+        <xsl:param name="test_log"/>       
+        <xsl:variable name="type" select="$test_log/@test-type"/>
+        <func:result select="$type='compile' or $type='compile_fail' or 
$type='link' or $type='link_fail' 
+                             or $type='run' or $type='run_fail' or 
$type='run_pyd'"/>
     </func:function>
 
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to