Do not add >> $TESTLOG to lines ending with "\"

This commit is contained in:
Pierre Labastie 2018-01-14 20:19:14 +00:00
parent 84a3fda1c3
commit 764a5d712c

View file

@ -966,7 +966,10 @@ DNS=</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$instructions"/>
<xsl:if test="not(contains($instructions, '&gt;&gt;'))">
<xsl:if
test="not(contains($instructions, '&gt;&gt;')) and
substring($instructions,
string-length($instructions)) != '\'">
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
</xsl:if>
<xsl:text>&#xA;</xsl:text>
@ -982,7 +985,9 @@ DNS=</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$instructions"/>
<xsl:if test="not(contains($instructions, '&gt;&gt;'))">
<xsl:if test="not(contains($instructions, '&gt;&gt;')) and
substring($instructions,
string-length($instructions)) != '\'">
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
</xsl:if>
<xsl:text>&#xA;</xsl:text>