csleobuild.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Name: include/csleobuild.xml
  4. Purpose: Declarations for the csleobuild slave
  5. Author: Michael Wetherel, Stefan Csomor
  6. Copyright: (c) Stefan Csomor
  7. Licence: wxWindows licence
  8. -->
  9. <bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  10. xmlns:xi="http://www.w3.org/2001/XInclude">
  11. <xi:include href="unix.xml"/>
  12. <!--
  13. run-tests - build step to run the test suites.
  14. -->
  15. <xsl:template name="run-tests">
  16. <xsl:param name="content"/>
  17. <test>
  18. <defaults content="{$content}">
  19. <description>running tests</description>
  20. <descriptionDone>run tests</descriptionDone>
  21. <warnOnFailure/>
  22. </defaults>
  23. <copy-with-defaults content="{$content}">
  24. <command>
  25. export DYLD_LIBRARY_PATH=../lib
  26. cd tests &amp;&amp;
  27. ./test -t &amp;&amp;
  28. open ./test_gui.app
  29. </command>
  30. </copy-with-defaults>
  31. </test>
  32. </xsl:template>
  33. </bot>