Be sure that all test suites are run using the -k switch.

This commit is contained in:
Manuel Canales Esparcia 2005-10-01 10:26:22 +00:00
parent 88dcce5b39
commit 3eb60faaa7

View file

@ -72,13 +72,22 @@
<xsl:template match="para/userinput"> <xsl:template match="para/userinput">
<xsl:if test="$testsuite = '0' and (contains(string(),'test') or <xsl:if test="$testsuite = '0' and (contains(string(),'test') or
contains(string(),'check'))"> contains(string(),'check'))">
<xsl:apply-templates/> <xsl:value-of select="substring-before(string(),'make')"/>
<xsl:text>make -k</xsl:text>
<xsl:value-of select="substring-after(string(),'make')"/>
<xsl:text> &amp;&amp;&#xA;</xsl:text> <xsl:text> &amp;&amp;&#xA;</xsl:text>
</xsl:if> </xsl:if>
</xsl:template> </xsl:template>
<xsl:template match="userinput" mode="screen"> <xsl:template match="userinput" mode="screen">
<xsl:apply-templates/> <xsl:choose>
<xsl:when test="string() = 'make check'">
<xsl:text>make -k check</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:template> </xsl:template>
<xsl:template match="replaceable"> <xsl:template match="replaceable">