Changeset 3eb60fa


Ignore:
Timestamp:
10/01/2005 10:26:22 AM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
0.2, 1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
71642ef
Parents:
88dcce5
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dump-commands.xsl

    r88dcce5 r3eb60fa  
    7373    <xsl:if test="$testsuite = '0' and (contains(string(),'test') or
    7474        contains(string(),'check'))">
    75       <xsl:apply-templates/>
     75      <xsl:value-of select="substring-before(string(),'make')"/>
     76      <xsl:text>make -k</xsl:text>
     77      <xsl:value-of select="substring-after(string(),'make')"/>
    7678      <xsl:text> &amp;&amp;&#xA;</xsl:text>
    7779    </xsl:if>
     
    7981
    8082  <xsl:template match="userinput" mode="screen">
    81     <xsl:apply-templates/>
     83    <xsl:choose>
     84      <xsl:when test="string() = 'make check'">
     85        <xsl:text>make -k check</xsl:text>
     86      </xsl:when>
     87      <xsl:otherwise>
     88        <xsl:apply-templates/>
     89      </xsl:otherwise>
     90    </xsl:choose>
    8291  </xsl:template>
    8392
Note: See TracChangeset for help on using the changeset viewer.