mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 06:43:09 +00:00
Merge run_mpi test type support.
[SVN r55996]
This commit is contained in:
parent
e040d973e5
commit
d18cb1bc3f
3 changed files with 3 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue