From f8ad9c20bbbc5018927598c23532e33851b74d60 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Thu, 5 May 2016 18:16:03 -0400 Subject: test fixes --- test/apps-x11/apps-x11.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'test/apps-x11') diff --git a/test/apps-x11/apps-x11.sh b/test/apps-x11/apps-x11.sh index b01c37d0f..a8556ab8f 100755 --- a/test/apps-x11/apps-x11.sh +++ b/test/apps-x11/apps-x11.sh @@ -6,6 +6,23 @@ export MALLOC_CHECK_=3 export MALLOC_PERTURB_=$(($RANDOM % 255 + 1)) +# check xpra/xephyr +which xpra +if [ "$?" -eq 0 ]; +then + echo "xpra found" +else + echo "xpra not found" + which xephyr + if [ "$?" -eq 0 ]; + then + echo "xephyr found" + else + echo "TESTING SKIP: xpra and/or xephyr not found" + exit + fi +fi + which xterm if [ "$?" -eq 0 ]; then -- cgit v1.2.3-54-g00ecf