diff --git a/build/buildbot/config/include/testdrive-unix.xml b/build/buildbot/config/include/testdrive-unix.xml
deleted file mode 100644
index 56f450a9ad..0000000000
--- a/build/buildbot/config/include/testdrive-unix.xml
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-mkdir -p $TOPDIR
-chown $USER $TOPDIR
-rm -rf $BUILDDIR
-cp -pR . $BUILDDIR || { cd; rm -rf $BUILDDIR; exit 1; }
-
-
-
-
-
-
-mkdir -p $TOPDIR
-chown $USER $TOPDIR
-rm -rf $BUILDDIR
-SOURCE=`echo $SOURCE | sed "s|^[^/]|$HOME/&|"`
-cd $TOPDIR
-case $SOURCE in
- *.tar.gz)
- gunzip -c $SOURCE | tar xf -
- ;;
- *.tar.bz2)
- bunzip2 -c $SOURCE | tar xf -
- ;;
- *.zip)
- unzip $SOURCE
- ;;
-esac
-mv wx* $BUILDDIR
-
-
-
-
-
-
-
-
-
- ./configure --disable-precomp-headers
-
- find . -name Makefile | xargs perl -pi -e 's/^(?:CC|CXX) = /$&ccache /'
-
-
-
-
-
-
-
-
-
-
-
-
-setting up
-set up
-
-
-MINSPACE=1000000
-DSPACE=`df -Pk $BUILDDIR | tail -1 | awk '{ print $4 }'`
-if [ $DSPACE -lt $MINSPACE ]; then
- echo "Disk space low, skipping build"
- exit 1
-fi
-if [ -z "$CCACHE_DIR" ]; then
- gunzip -c $HOME/src/ccache-*.tar.gz | tar xf -
- cd ccache-*
-
- make
- strip ccache
- make install
- cd $BUILDDIR
- rm -r ccache-*
-fi
-if { cppunit-config --version || "$CPPUNIT_CONFIG" --version; } 2>/dev/null; then
- HAVE_CPPUNIT=1
-fi
-if [ -z "$HAVE_CPPUNIT" ]; then
- gunzip -c $HOME/src/cppunit-*.tar.gz | tar xf -
- cd cppunit-*
-
- make install-strip
- chmod +x $OPTDIR/bin/cppunit-config
- cd $BUILDDIR
- rm -rf cppunit-*
-fi
-
-
-
-
-
-
-
-set -e
-uname -smnr
-umask 022
-LANG=C
-TOPDIR=
-BUILDDIR=$TOPDIR/build
-OPTDIR=$HOME/opt/
-
-
-
-
-
-
-INSTALLDIR=$TOPDIR/install
-case `uname -sm` in
- Linux*86*) PATH=$HOME/linux-x86/bin:$PATH ;;
-esac
-PATH=$OPTDIR/bin:$PATH
-LD_LIBRARY_PATH=$BUILDDIR/lib:$OPTDIR/lib:$LD_LIBRARY_PATH
-export LD_LIBRARY_PATH
-if { ccache -V; } >/dev/null 2>&1; then
- CCACHE_DIR=$TOPDIR/ccache
- export CCACHE_DIR
- ccache -M 120M
-fi
-cd $BUILDDIR
-if [ -f wx-config ]; then
- `./wx-config --cxx` --version
-fi
-trap 'cd; rm -rf $BUILDDIR' EXIT
-
-
-
-
-
-
-
- trap '' EXIT
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /tmp/wx/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/buildbot/config/include/testdrive-win.xml b/build/buildbot/config/include/testdrive-win.xml
deleted file mode 100644
index 0c10d640eb..0000000000
--- a/build/buildbot/config/include/testdrive-win.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-if exist "%BUILDDIR%" (rmdir /s/q "%BUILDDIR%" || exit 1)
-xcopy /s/q/i . "%BUILDDIR%" || (rmdir /s/q "%BUILDDIR%" & exit 1)
-
-
-
-
-
-
-for %I in ("%USERPROFILE%") do set BUILDDIR=%~sI\build
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-call "C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\SetEnv.Cmd" /SRV64
-set LINK=bufferoverflowu.lib
-cd /d "%BUILDDIR%"
-
-
-
-call h:\cygwin\cyg-vars.bat
-PATH=%PATH%;%BUILDDIR%\lib
-cd /d "%BUILDDIR%"
-sh -c \
-
-
-
-cd /d "%BUILDDIR%"
-
-
-
-
-
-
-
-
-
-
-
-
-
- if ERRORLEVEL 1 ()
-
-
-
-
-
-
-
-cd /d "%USERPROFILE%" & rmdir /s/q "%BUILDDIR%" & exit %ERRORLEVEL%
-
-
-
diff --git a/build/buildbot/config/include/testdrive.xml b/build/buildbot/config/include/testdrive.xml
deleted file mode 100644
index eb51369880..0000000000
--- a/build/buildbot/config/include/testdrive.xml
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Daily_HEAD/wxWidgets.tar.gz
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/buildbot/config/testdrive-unix.xml b/build/buildbot/config/testdrive-unix.xml
deleted file mode 100644
index 8aa3dc56cf..0000000000
--- a/build/buildbot/config/testdrive-unix.xml
+++ /dev/null
@@ -1,426 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- Linux IA64 wxGTK Trunk
- td187.testdrive.hp.com
- td_gtk
- trunk_quick
-
-
-
-
-
-
-
-
-
-
-
- Linux IA64 wxGTK Stable
- td187.testdrive.hp.com
- td_gtk_stable
- stable_quick
-
-
-
-
-
-
-
-
-
-
-
-
-
- OSX 10.4 PowerPC wxMac Trunk
- td153.testdrive.hp.com
- td_mac
- trunk_quick
-
-
-
-
-
-
-
-
-
-
-
- OSX 10.4 Intel wxMac Stable
- td153.testdrive.hp.com
- td_mac_stable
- stable_quick
-
-
-
-
-
-
-
-
-
-
-
-
- MinGW32 wxMSW Trunk
- td166.testdrive.hp.com
- td_msw
- trunk_quick
-
-
-
-
-
-
-
-
-
- MinGW32 wxMSW Stable
- td166.testdrive.hp.com
- td_msw_stable
- stable_quick
-
-
-
-
-
-
-
-
-
-
-
- FreeBSD x86 wxX11 Trunk
- td152.testdrive.hp.com
- td_freebsd
- daily_0600
-
-
-
-
-
-
-
-
-
-
-
- FreeBSD x86 wxX11 Stable
- td152.testdrive.hp.com
- td_freebsd_stable
-
-
-
-
-
-
-
-
-
-
-
-
- HP-UX 11i PA-RISC gcc wxMotif Head Tarball
- td192.testdrive.hp.com
- td_hpux_pa
- daily_0800
-
-
-
-
-
-
-
-
-
-
-
- HP-UX 11i PA-RISC gcc wxMotif Stable
- td192.testdrive.hp.com
- td_hpux_pa_stable
- daily_0600
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --host=i686-pc-cygwin
- --with-cppunit-prefix=$HOME/cygwin
-
-
-
-
-
- --x-includes=$HOME/cygwin/usr/X11R6/include
- --x-libraries=$HOME/cygwin/usr/X11R6/lib
- PKG_CONFIG_PATH=$HOME/opt/cygwin/pkgconfig
-
-
-
- Cygwin wxMSW Trunk
- td_cygwin_msw
- td153.testdrive.hp.com
- monday_0600
-
-
-
-
-
-
-
-
-
- Cygwin wxMSW Stable
- td_cygwin_msw_stable
-
-
-
-
-
-
-
-
-
-
- Cygwin wxGTK Trunk
- td_cygwin_gtk
-
-
-
-
-
-
-
-
-
-
- Cygwin wxGTK Stable
- td_cygwin_gtk_stable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- --host=i686-pc-cygwin
- --with-cppunit-prefix=$HOME/opt/nocygwin
- CC='i686-pc-cygwin-gcc -mno-cygwin'
- CXX='i686-pc-cygwin-g++ -mno-cygwin'
-
-
-
- Cygwin no-cygwin wxMSW Trunk
- td_nocygwin
- td166.testdrive.hp.com
- monday_0600
-
-
-
-
-
-
-
-
-
- Cygwin no-cygwin wxMSW Stable
- td_nocygwin_stable
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/buildbot/config/testdrive-win.xml b/build/buildbot/config/testdrive-win.xml
deleted file mode 100644
index 220a5912c4..0000000000
--- a/build/buildbot/config/testdrive-win.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- VC++ 8 IA64 Trunk
- td197.testdrive.hp.com
- wd_msw_ia64
- monday_0600
- nmake -f makefile.vc
-
-
-
-
-
-
-
-
- VC++ 8 IA64 Stable
- wd_msw_ia64_stable
-
- nmake -f makefile.vc
-
-
-
-
-
-
-
-
-
-
- Cygwin wxBase Trunk
- td198.testdrive.hp.com
- wd_cyg_base
- monday_0600
-
-
-
-
-
-
-
-
-
-
- Cygwin wxBase Stable
- wd_cyg_base_stable
-
-
-
-
-
-
-
-
-
-
-