Filter out other results than those related to tenThousandIterations tests executed on browsers
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 11 Mar 2013 20:37:59 +0100
changeset 837dcc333e8f0b5
parent 836 eefe5c8438d4
child 838 5141f3baf9f0
Filter out other results than those related to tenThousandIterations tests executed on browsers
benchmarks/matrix-multiplication/src/main/select-time.xsl
     1.1 --- a/benchmarks/matrix-multiplication/src/main/select-time.xsl	Mon Mar 11 19:41:06 2013 +0100
     1.2 +++ b/benchmarks/matrix-multiplication/src/main/select-time.xsl	Mon Mar 11 20:37:59 2013 +0100
     1.3 @@ -28,11 +28,17 @@
     1.4          
     1.5      
     1.6      <xsl:template match="testcase">
     1.7 -        <xsl:text>
     1.8 +      <xsl:if test="contains(@name,'tenThousand')">
     1.9 +        <xsl:if test="not(contains(@name, '[Java]'))">
    1.10 +          <xsl:if test="not(contains(@name, '[Compare'))">
    1.11 +            <xsl:text>
    1.12  </xsl:text>
    1.13 -        <xsl:value-of select="@name"/>
    1.14 -        <xsl:text>=</xsl:text>
    1.15 -        <xsl:value-of select="@time"/>
    1.16 +            <xsl:value-of select="@name"/>
    1.17 +            <xsl:text>=</xsl:text>
    1.18 +            <xsl:value-of select="@time"/>
    1.19 +          </xsl:if>
    1.20 +        </xsl:if>
    1.21 +      </xsl:if>
    1.22      </xsl:template>
    1.23  
    1.24  </xsl:stylesheet>