<scheduler>stable_quick</scheduler>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
- <configure/>
+ <configure options="--enable-compat26"/>
<compile-all utils="false"/>
<run-tests/>
</steps>
<build>
<name>MinGW x86 trunk</name>
<builddir>tbitcwxbuildbot_mingw_trunk</builddir>
- <!--scheduler>daily_0600</scheduler-->
+ <scheduler>trunk_quick</scheduler>
<steps>
<checkout/>
<configure options="--host=i586-mingw32msvc
<build>
<name>MinGW x86 stable</name>
<builddir>tbitcwxbuildbot_mingw_stable</builddir>
- <!--scheduler>daily_0600</scheduler-->
+ <scheduler>daily_0600</scheduler>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
<configure options="--host=i586-mingw32msvc
<scheduler>trunk_quick</scheduler>
<steps>
<checkout/>
- <configure/>
+ <configure options="--enable-compat28"/>
<compile-all/>
<run-tests/>
</steps>
<build>
<name>Linux x86 wxDFB trunk</name>
<builddir>brandt32_dfb_trunk</builddir>
- <!--scheduler>daily_0600</scheduler-->
+ <scheduler>daily_0600</scheduler>
<steps>
<checkout/>
<configure options="--with-directfb"/>
<build>
<name>Linux x86 wxDFB stable</name>
<builddir>brandt32_dfb_stable</builddir>
- <!--scheduler>daily_0600</scheduler-->
+ <scheduler>daily_0600</scheduler>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
<configure options="--with-directfb"/>
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>
-
-<!--
- Name: brandt64.xml
- RCS-ID: $Id$
--->
-
-<bot xmlns:xi="http://www.w3.org/2001/XInclude">
-
-<xi:include href="include/unix.xml"/>
-
-<build>
- <name>Linux x86_64 wxGTK trunk static</name>
- <builddir>brandt64_gtk</builddir>
- <!--scheduler>daily_0800</scheduler-->
- <steps>
- <checkout/>
- <configure options="--disable-shared --enable-opengl --enable-svg
- --enable-aui --with-gtk=2 --enable-graphics_ctx"/>
- <compile-all/>
- <run-tests/>
- </steps>
-</build>
-
-</bot>
+++ /dev/null
-# Run the test suites
-# Running them one at a time gives more readable results and shows up errors
-# in the suite names.
-set -e
-cd tests
-
-case `uname -sm` in
- CYGWIN*|MINGW32*) PATH=../lib:$PATH ;;
- Darwin*) DYLD_LIBRARY_PATH=../lib:$DYLD_LIBRARY_PATH ;;
- *) LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH ;;
-esac
-
-test -x test_gui && TEST_GUI=./test_gui
-ERR=0
-
-for prog in ./test $TEST_GUI; do
- if [ -x $prog ]; then
- SUITES=`$prog -l | grep '^ [^ ]'`
- for SUITE in $SUITES; do
- echo
- echo $SUITE
- echo $SUITE | sed 's/./-/g'
- $prog $SUITE || ERR=1
- echo
- done
- fi
-done
-
-exit $ERR