Merge run_mpi test type support.

[SVN r55996]
This commit is contained in:
Vladimir Prus 2009-09-03 12:59:28 +00:00
parent e040d973e5
commit d18cb1bc3f
3 changed files with 3 additions and 2 deletions

View file

@ -36,7 +36,7 @@ http://www.boost.org/LICENSE_1_0.txt)
</xsl:when>
<xsl:when test="$type='link' or $type='link_fail' or $type='' or $type='lib' or $test_log/link/@result='fail'">
<xsl:value-of select="count( $test_log/compile) = 1 and count( $test_log/link) = 1 and count( $test_log/run) = 0"/></xsl:when>
<xsl:when test="$type='run' or $type='run_fail' or $type='run_pyd'">
<xsl:when test="$type='run' or $type='run_fail' or $type='run_pyd' or $type='run_mpi'">
<xsl:value-of select="count( $test_log/compile) = 1 and count( $test_log/link) = 1 and count($test_log/run) = 1 "/>
</xsl:when>
<xsl:otherwise>

View file

@ -151,7 +151,7 @@ http://www.boost.org/LICENSE_1_0.txt)
<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>

View file

@ -98,6 +98,7 @@ http://www.boost.org/LICENSE_1_0.txt)
<xsl:variable name="test_type" select="./@test-type"/>
<xsl:choose>
<xsl:when test="$test_type='run_pyd'"> <xsl:text>r</xsl:text> </xsl:when>
<xsl:when test="$test_type='run_mpi'"> <xsl:text>r</xsl:text> </xsl:when>
<xsl:when test="$test_type='run'"> <xsl:text>r</xsl:text> </xsl:when>
<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>