]> git.saurik.com Git - wxWidgets.git/blame - build/buildbot/config/include/csleobuild.xml
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / build / buildbot / config / include / csleobuild.xml
CommitLineData
96e6ebe6
MW
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
96e6ebe6 7 Copyright: (c) Stefan Csomor
526954c5 8 Licence: wxWindows licence
96e6ebe6
MW
9-->
10
11<bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12 xmlns:xi="http://www.w3.org/2001/XInclude">
13
ec2c6795 14<xi:include href="unix.xml"/>
96e6ebe6
MW
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;
5bf7b950 31 ./test -t &amp;&amp;
242df767 32 open ./test_gui.app
96e6ebe6
MW
33 </command>
34 </copy-with-defaults>
35 </test>
36</xsl:template>
37
38</bot>