]> git.saurik.com Git - wxWidgets.git/blobdiff - build/buildbot/config/include/defs.xml
Added build/msw/wx_propgrid.dsp to vc manifest (I hope this fixes #10564)
[wxWidgets.git] / build / buildbot / config / include / defs.xml
index 19cf8e491103cb35c9bba1e1aff2936fa42293d8..8a68746b513c475e1c8031612ae646f41c7377ef 100644 (file)
 -->
 <xsl:template name="run-tests">
     <xsl:param name="content"/>
 -->
 <xsl:template name="run-tests">
     <xsl:param name="content"/>
+    <xsl:param name="options"/>
     <xsl:param name="msw"><is-msw/></xsl:param>
     <test>
         <defaults content="{$content}">
     <xsl:param name="msw"><is-msw/></xsl:param>
     <test>
         <defaults content="{$content}">
             <command>
                 <xsl:choose>
                     <xsl:when test="$msw = 'true'">
             <command>
                 <xsl:choose>
                     <xsl:when test="$msw = 'true'">
-                        <run-tests-win/>
+                        <run-tests-win options="{$options}"/>
                     </xsl:when>
                     <xsl:otherwise>
                     </xsl:when>
                     <xsl:otherwise>
-                        <run-tests-unix/>
+                        <run-tests-unix options="{$options}"/>
                     </xsl:otherwise>
                 </xsl:choose>
             </command>
                     </xsl:otherwise>
                 </xsl:choose>
             </command>
     simple command so that these aren't necessary.
 -->
 <xsl:template name="run-tests-win">
     simple command so that these aren't necessary.
 -->
 <xsl:template name="run-tests-win">
+    <xsl:param name="options"/>
 <normalize-space>
 cd tests &amp;&amp;
 (for /d %x in (..\lib\*_dll) do @PATH=%x;%PATH%) &amp;&amp;
 <normalize-space>
 cd tests &amp;&amp;
 (for /d %x in (..\lib\*_dll) do @PATH=%x;%PATH%) &amp;&amp;
@@ -369,9 +371,10 @@ cd tests &amp;&amp;
 </xsl:template>
 
 <xsl:template name="run-tests-unix">
 </xsl:template>
 
 <xsl:template name="run-tests-unix">
+    <xsl:param name="options"/>
 <normalize-space>
 cd tests &amp;&amp;
 <normalize-space>
 cd tests &amp;&amp;
-./test --timing &amp;&amp;
+./test <xsl:value-of select="normalize-space($options)"/> &amp;&amp;
 if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui; fi
 </normalize-space>
 </xsl:template>
 if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui; fi
 </normalize-space>
 </xsl:template>