Fix typo in OIDs corresponding to SHA256, SHA384, and SHA512 (#21707)
[mono-project.git] / mcs / tools / mono-xmltool / nunit_transform.xslt
blob0e8f5de0562417422048170ee3971bd8cb97d230
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4 <xsl:output method="text" indent="no"/>
5 <xsl:strip-space elements="*"/>
7 <xsl:template match="/">
8 <xsl:apply-templates/>
9 </xsl:template>
11 <xsl:template match="//test-case[@success='False']">
12 <xsl:text>
13 </xsl:text>
14 <xsl:value-of select="@name"/>
15 </xsl:template>
17 <xsl:template match="//test-case/reason/message">
18 </xsl:template>
20 <xsl:template match="test-results">
21 <xsl:if test="@failures!='0'">
22 <xsl:text>Failures number :</xsl:text>
23 <xsl:value-of select="@failures"/>
24 <xsl:text>
25 Failed tests:</xsl:text>
26 <xsl:apply-templates select="//test-case"/>
27 </xsl:if>
28 </xsl:template>
29 </xsl:stylesheet>