2008-09-19 06:42:18 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Name: include/csleobuild.xml
|
|
|
|
Purpose: Declarations for the csleobuild slave
|
|
|
|
Author: Michael Wetherel, Stefan Csomor
|
|
|
|
Copyright: (c) Stefan Csomor
|
2010-07-13 09:29:13 -04:00
|
|
|
Licence: wxWindows licence
|
2008-09-19 06:42:18 -04:00
|
|
|
-->
|
|
|
|
|
|
|
|
<bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
|
|
2010-04-09 18:04:59 -04:00
|
|
|
<xi:include href="unix.xml"/>
|
2008-09-19 06:42:18 -04:00
|
|
|
|
|
|
|
<!--
|
|
|
|
run-tests - build step to run the test suites.
|
|
|
|
-->
|
|
|
|
<xsl:template name="run-tests">
|
|
|
|
<xsl:param name="content"/>
|
|
|
|
<test>
|
|
|
|
<defaults content="{$content}">
|
|
|
|
<description>running tests</description>
|
|
|
|
<descriptionDone>run tests</descriptionDone>
|
|
|
|
<warnOnFailure/>
|
|
|
|
</defaults>
|
|
|
|
<copy-with-defaults content="{$content}">
|
|
|
|
<command>
|
|
|
|
export DYLD_LIBRARY_PATH=../lib
|
|
|
|
cd tests &&
|
2010-12-23 07:48:00 -05:00
|
|
|
./test -t &&
|
2010-12-31 12:29:39 -05:00
|
|
|
open ./test_gui.app
|
2008-09-19 06:42:18 -04:00
|
|
|
</command>
|
|
|
|
</copy-with-defaults>
|
|
|
|
</test>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</bot>
|