From 834054468bdea7421377edc959d121bbc400c120 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 1 Jun 2008 18:33:36 +0000 Subject: [PATCH] don't run GUI tests under Unix if the DISPLAY is not set git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53906 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/buildbot/config/include/defs.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/buildbot/config/include/defs.xml b/build/buildbot/config/include/defs.xml index 94c0d7909d..0c5b550e26 100644 --- a/build/buildbot/config/include/defs.xml +++ b/build/buildbot/config/include/defs.xml @@ -372,7 +372,7 @@ cd tests && cd tests && ./test && -if [ -x test_gui ]; then ./test_gui; fi +if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui; fi -- 2.45.2