Run tests with "-t" option on OS X too.
[wxWidgets.git] / build / buildbot / config / include / csleobuild.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4 Name: include/csleobuild.xml
5 Purpose: Declarations for the csleobuild slave
6 Author: Michael Wetherel, Stefan Csomor
7 RCS-ID: $Id$
8 Copyright: (c) Stefan Csomor
9 Licence: wxWindows licence
10 -->
11
12 <bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
13 xmlns:xi="http://www.w3.org/2001/XInclude">
14
15 <xi:include href="unix.xml"/>
16
17 <!--
18 run-tests - build step to run the test suites.
19 -->
20 <xsl:template name="run-tests">
21 <xsl:param name="content"/>
22 <test>
23 <defaults content="{$content}">
24 <description>running tests</description>
25 <descriptionDone>run tests</descriptionDone>
26 <warnOnFailure/>
27 </defaults>
28 <copy-with-defaults content="{$content}">
29 <command>
30 export DYLD_LIBRARY_PATH=../lib
31 cd tests &amp;&amp;
32 ./test -t &amp;&amp;
33 ./test_gui.app/Contents/MacOS/test_gui -t
34 </command>
35 </copy-with-defaults>
36 </test>
37 </xsl:template>
38
39 </bot>