]>
Commit | Line | Data |
---|---|---|
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 | |
7 | RCS-ID: $Id$ | |
8 | Copyright: (c) Stefan Csomor | |
526954c5 | 9 | Licence: wxWindows licence |
96e6ebe6 MW |
10 | --> |
11 | ||
12 | <bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
13 | xmlns:xi="http://www.w3.org/2001/XInclude"> | |
14 | ||
ec2c6795 | 15 | <xi:include href="unix.xml"/> |
96e6ebe6 MW |
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 && | |
5bf7b950 | 32 | ./test -t && |
242df767 | 33 | open ./test_gui.app |
96e6ebe6 MW |
34 | </command> |
35 | </copy-with-defaults> | |
36 | </test> | |
37 | </xsl:template> | |
38 | ||
39 | </bot> |