526954c596
Use "wxWindows licence" and not "wxWidgets licence" (the latter doesn't exist) and consistently spell "licence" using British spelling. See #12165. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
40 lines
1.1 KiB
XML
40 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Name: include/csleobuild.xml
|
|
Purpose: Declarations for the csleobuild slave
|
|
Author: Michael Wetherel, Stefan Csomor
|
|
RCS-ID: $Id$
|
|
Copyright: (c) Stefan Csomor
|
|
Licence: wxWindows licence
|
|
-->
|
|
|
|
<bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
|
<xi:include href="unix.xml"/>
|
|
|
|
<!--
|
|
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 &&
|
|
./test &&
|
|
./test_gui.app/Contents/MacOS/test_gui
|
|
</command>
|
|
</copy-with-defaults>
|
|
</test>
|
|
</xsl:template>
|
|
|
|
</bot>
|