From c96ce98975d719cce91d5a30f752a9753dc2b18e Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Tue, 13 Apr 2010 20:22:53 +0000 Subject: [PATCH] Make the gui test still run on the buildbot when the non-gui tests fail. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/buildbot/config/include/defs.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/buildbot/config/include/defs.xml b/build/buildbot/config/include/defs.xml index 39605c8962..c0fab9951c 100644 --- a/build/buildbot/config/include/defs.xml +++ b/build/buildbot/config/include/defs.xml @@ -367,11 +367,11 @@ cd tests && runtests.bat - -cd tests && -./test && -if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui; fi - +ERR=0 +cd tests +./test || ERR=$? +if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui || ERR=$?; fi +exit $ERR