$include_dir="/home/hyper-archives/boost-testing/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-testing] test results with mpi vanish
From: Steve M. Robbins (steve_at_[hidden])
Date: 2009-08-03 23:54:16
On Mon, Aug 03, 2009 at 12:00:38AM -0400, Jeremiah Willcock wrote:
> One thing that I see is that the meta:is_test_log_a_test_case
> function in tools/regression/xsl_reports/xsl/v2/common.xsl does not
> recognize run_mpi as a type of test case; all Boost.MPI and
> Boost.Graph.Parallel tests use this type and so probably would not
> show up in the test result Web pages.
Here's a trivial patch to fix this.  Who can get this installed
on the results server?
Index: tools/regression/xsl_reports/xsl/v2/common.xsl
===================================================================
--- tools/regression/xsl_reports/xsl/v2/common.xsl	(revision 55395)
+++ tools/regression/xsl_reports/xsl/v2/common.xsl	(working copy)
@@ -151,7 +151,7 @@
         <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'"/>
+                             or $type='run' or $type='run_fail' or $type='run_pyd' or $type='run_mpi'"/>
     </func:function>
 
Thanks,
-Steve