diff --git a/build/buildbot/config/StellarWerx64.xml b/build/buildbot/config/StellarWerx64.xml
index 7472b9c6ea..d1a218b344 100644
--- a/build/buildbot/config/StellarWerx64.xml
+++ b/build/buildbot/config/StellarWerx64.xml
@@ -15,7 +15,7 @@
stable_quick
-
+
diff --git a/build/buildbot/config/TBITCWXBUILDBOT.xml b/build/buildbot/config/TBITCWXBUILDBOT.xml
index 03908e130a..756c26a99a 100644
--- a/build/buildbot/config/TBITCWXBUILDBOT.xml
+++ b/build/buildbot/config/TBITCWXBUILDBOT.xml
@@ -12,7 +12,7 @@
MinGW x86 trunk
tbitcwxbuildbot_mingw_trunk
-
+ trunk_quick
@@ -48,7 +48,7 @@
Linux x86 wxDFB trunk
brandt32_dfb_trunk
-
+ daily_0600
@@ -60,7 +60,7 @@
Linux x86 wxDFB stable
brandt32_dfb_stable
-
+ daily_0600
diff --git a/build/buildbot/config/brandt64.xml b/build/buildbot/config/brandt64.xml
deleted file mode 100644
index 4be54c2bff..0000000000
--- a/build/buildbot/config/brandt64.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- Linux x86_64 wxGTK trunk static
- brandt64_gtk
-
-
-
-
-
-
-
-
-
-
diff --git a/build/buildbot/config/run-tests.sh b/build/buildbot/config/run-tests.sh
deleted file mode 100755
index eb22eae62e..0000000000
--- a/build/buildbot/config/run-tests.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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