+<!--
+ run-tests-with-timing - build step to run the test suites with extra timing
+ option.
+
+ Usage: as <test>
+
+ Typically just:
+ <run-tests-with-timing/>
+-->
+<xsl:template name="run-tests-with-timing">
+ <xsl:param name="content"/>
+ <xsl:param name="msw"><is-msw/></xsl:param>
+ <test>
+ <defaults content="{$content}">
+ <description>running tests with timing</description>
+ <descriptionDone>run tests with timing</descriptionDone>
+ <warnOnFailure/>
+ </defaults>
+ <copy-with-defaults content="{$content}">
+ <command>
+ <xsl:choose>
+ <xsl:when test="$msw = 'true'">
+ <run-tests-with-timing-win/>
+ </xsl:when>
+ <xsl:otherwise>
+ <run-tests-with-timing-unix/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </command>
+ </copy-with-defaults>
+ </test>
+</xsl:template>
+