Home | History | Annotate | Download | only in data
      1 <?xml version="1.0"?>
      2 
      3 <!-- Copyright (C) 2012 IBM Corporation and Others. All Rights Reserved. -->
      4 
      5 <xsl:stylesheet version="1.0"
      6                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      7 
      8   <xsl:template match="/perfTestResults">
      9     <report category="test">
     10       <xsl:for-each select="perfTestResult">
     11         <xsl:element name="test">
     12           <xsl:attribute name="duration">
     13             <xsl:value-of select="@time"/>
     14           </xsl:attribute>
     15           <xsl:attribute name="status">success</xsl:attribute>
     16           <xsl:attribute name="name">
     17             <xsl:value-of select="@test"/>
     18           </xsl:attribute>
     19           <xsl:attribute name="fixture">
     20           </xsl:attribute>
     21           <xsl:attribute name="file">/perf-tests</xsl:attribute>
     22           <xsl:attribute name="stdout">
     23             iterations: <xsl:value-of select="@iterations"/>
     24           </xsl:attribute>
     25         </xsl:element>
     26       </xsl:for-each>
     27     </report>
     28   </xsl:template>
     29 </xsl:stylesheet>