Fixed Binutils and GCC chapter06 testsuites.
This commit is contained in:
parent
ca0ac30302
commit
1f89002db2
1 changed files with 14 additions and 4 deletions
|
@ -122,10 +122,17 @@
|
||||||
($testsuite = '2' and
|
($testsuite = '2' and
|
||||||
ancestor::chapter[@id='chapter-building-system']) or
|
ancestor::chapter[@id='chapter-building-system']) or
|
||||||
$testsuite = '3')">
|
$testsuite = '3')">
|
||||||
<xsl:value-of select="substring-before(string(),'make')"/>
|
<xsl:choose>
|
||||||
<xsl:text>make -k</xsl:text>
|
<xsl:when test="ancestor::sect1[@id='ch-system-gcc']">
|
||||||
<xsl:value-of select="substring-after(string(),'make')"/>
|
<xsl:text>make -k check || true
</xsl:text>
|
||||||
<xsl:text> || true
</xsl:text>
|
</xsl:when>
|
||||||
|
<xsl:otherwise>
|
||||||
|
<xsl:value-of select="substring-before(string(),'make')"/>
|
||||||
|
<xsl:text>make -k</xsl:text>
|
||||||
|
<xsl:value-of select="substring-after(string(),'make')"/>
|
||||||
|
<xsl:text> || true
</xsl:text>
|
||||||
|
</xsl:otherwise>
|
||||||
|
</xsl:choose>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
@ -187,6 +194,9 @@
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
|
<xsl:when test="contains(string(),'hardened-specs') and
|
||||||
|
ancestor::sect1[@id='ch-system-binutils']
|
||||||
|
and $testsuite = '0'"/>
|
||||||
<!-- Don't stop on strip run -->
|
<!-- Don't stop on strip run -->
|
||||||
<xsl:when test="contains(string(),'strip ')">
|
<xsl:when test="contains(string(),'strip ')">
|
||||||
<xsl:apply-templates/>
|
<xsl:apply-templates/>
|
||||||
|
|
Reference in a new issue