Fixed a bug when no test suites will be run.
Fixed the extension for harcoded package names.
This commit is contained in:
parent
af47a19d2c
commit
92568bf217
1 changed files with 8 additions and 1 deletions
|
@ -92,6 +92,12 @@
|
||||||
|
|
||||||
<xsl:template match="userinput" mode="screen">
|
<xsl:template match="userinput" mode="screen">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
|
<xsl:when test="contains(string(),'tar.gz')">
|
||||||
|
<xsl:value-of select="substring-before(string(),'tar.gz')"/>
|
||||||
|
<xsl:text>tar.bz2</xsl:text>
|
||||||
|
<xsl:value-of select="substring-after(string(),'tar.gz')"/>
|
||||||
|
<xsl:text> &&
</xsl:text>
|
||||||
|
</xsl:when>
|
||||||
<xsl:when test="$testsuite = '0' and
|
<xsl:when test="$testsuite = '0' and
|
||||||
ancestor::sect1[@id='ch-system-coreutils'] and
|
ancestor::sect1[@id='ch-system-coreutils'] and
|
||||||
(contains(string(),'check') or
|
(contains(string(),'check') or
|
||||||
|
@ -107,7 +113,8 @@
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:when test="contains(string(),'glibc-check-log') or
|
<xsl:when test="contains(string(),'glibc-check-log') or
|
||||||
contains(string(),'test_summary')">
|
contains(string(),'test_summary') or
|
||||||
|
contains(string(),'expect -c')">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="$toolchaintest = '0'"/>
|
<xsl:when test="$toolchaintest = '0'"/>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
|
|
Reference in a new issue