Changeset a1f1969 for HLFS


Ignore:
Timestamp:
08/15/2006 02:51:39 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
b45f723
Parents:
6ff1be4
Message:

Don't bomb on testsuites that already have -k in the book.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • HLFS/hlfs.xsl

    r6ff1be4 ra1f1969  
    152152        <xsl:otherwise>
    153153          <xsl:apply-templates/>
    154           <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1&#xA;</xsl:text>
     154          <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
     155          <xsl:if test="contains(string(),' -k ')">
     156            <xsl:text> || true</xsl:text>
     157          </xsl:if>
     158          <xsl:text>&#xA;</xsl:text>
    155159        </xsl:otherwise>
    156160      </xsl:choose>
     
    235239                <xsl:otherwise>
    236240                  <xsl:apply-templates/>
    237                   <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1&#xA;</xsl:text>
     241                  <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
     242                  <xsl:if test="contains(string(),' -k ')">
     243                    <xsl:text> || true</xsl:text>
     244                  </xsl:if>
     245                  <xsl:text>&#xA;</xsl:text>
    238246                </xsl:otherwise>
    239247              </xsl:choose>
     
    243251      </xsl:when>
    244252      <!-- Fixing butterfly toolchain test suites run -->
    245       <xsl:when test="string() = 'make -k check'">
     253      <xsl:when test="string() = 'make -k check' or string() = 'make check'">
    246254        <xsl:choose>
    247255          <xsl:when test="$testsuite != '0'">
     
    253261              <xsl:otherwise>
    254262                <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1&#xA;</xsl:text>
     263                <xsl:if test="contains(string(),' -k ')">
     264                  <xsl:text> || true</xsl:text>
     265                </xsl:if>
     266                <xsl:text></xsl:text>
    255267              </xsl:otherwise>
    256268            </xsl:choose>
     
    268280              </xsl:when>
    269281              <xsl:otherwise>
    270                 <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1&#xA;</xsl:text>
     282                <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
     283                <xsl:if test="contains(string(),' -k ')">
     284                  <xsl:text> || true</xsl:text>
     285                </xsl:if>
     286                <xsl:text>&#xA;</xsl:text>
    271287              </xsl:otherwise>
    272288            </xsl:choose>
Note: See TracChangeset for help on using the changeset viewer.