Remove all lines containing cvs/svn "$Id$" keyword.
[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 Copyright: (c) Stefan Csomor
8 Licence: wxWindows licence
9 -->
10
11 <bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12 xmlns:xi="http://www.w3.org/2001/XInclude">
13
14 <xi:include href="unix.xml"/>
15
16 <!--
17 run-tests - build step to run the test suites.
18 -->
19 <xsl:template name="run-tests">
20 <xsl:param name="content"/>
21 <test>
22 <defaults content="{$content}">
23 <description>running tests</description>
24 <descriptionDone>run tests</descriptionDone>
25 <warnOnFailure/>
26 </defaults>
27 <copy-with-defaults content="{$content}">
28 <command>
29 export DYLD_LIBRARY_PATH=../lib
30 cd tests &amp;&amp;
31 ./test -t &amp;&amp;
32 open ./test_gui.app
33 </command>
34 </copy-with-defaults>
35 </test>
36 </xsl:template>
37
38 </bot>