aboutsummaryrefslogtreecommitdiffstats
path: root/test/apps-x11
diff options
context:
space:
mode:
Diffstat (limited to 'test/apps-x11')
-rwxr-xr-xtest/apps-x11/apps-x11.sh17
1 files changed, 17 insertions, 0 deletions
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 @@
6export MALLOC_CHECK_=3 6export MALLOC_CHECK_=3
7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1)) 7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
8 8
9# check xpra/xephyr
10which xpra
11if [ "$?" -eq 0 ];
12then
13 echo "xpra found"
14else
15 echo "xpra not found"
16 which xephyr
17 if [ "$?" -eq 0 ];
18 then
19 echo "xephyr found"
20 else
21 echo "TESTING SKIP: xpra and/or xephyr not found"
22 exit
23 fi
24fi
25
9which xterm 26which xterm
10if [ "$?" -eq 0 ]; 27if [ "$?" -eq 0 ];
11then 28then