aboutsummaryrefslogtreecommitdiffstats
path: root/test/apps-x11/apps-x11.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-05-05 18:16:03 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-05-05 18:16:03 -0400
commitf8ad9c20bbbc5018927598c23532e33851b74d60 (patch)
treefce89e52f67388c228039d5c9efdae8d069f2813 /test/apps-x11/apps-x11.sh
parentMerge pull request #499 from reinerh/master (diff)
downloadfirejail-f8ad9c20bbbc5018927598c23532e33851b74d60.tar.gz
firejail-f8ad9c20bbbc5018927598c23532e33851b74d60.tar.zst
firejail-f8ad9c20bbbc5018927598c23532e33851b74d60.zip
test fixes
Diffstat (limited to 'test/apps-x11/apps-x11.sh')
-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