aboutsummaryrefslogtreecommitdiffstats
path: root/test/test-apps-x11.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-15 15:34:19 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-15 15:34:19 -0400
commit3ee0df541e284074662c7c916951fb37aac4abef (patch)
treeb176830d33d229d83426314b639d55d72874ac68 /test/test-apps-x11.sh
parentmerged 0ad profile from Fred-Barclay (diff)
downloadfirejail-3ee0df541e284074662c7c916951fb37aac4abef.tar.gz
firejail-3ee0df541e284074662c7c916951fb37aac4abef.tar.zst
firejail-3ee0df541e284074662c7c916951fb37aac4abef.zip
x11 fixes
Diffstat (limited to 'test/test-apps-x11.sh')
-rwxr-xr-xtest/test-apps-x11.sh20
1 files changed, 19 insertions, 1 deletions
diff --git a/test/test-apps-x11.sh b/test/test-apps-x11.sh
index 6521fa2b0..93d984501 100755
--- a/test/test-apps-x11.sh
+++ b/test/test-apps-x11.sh
@@ -1,5 +1,14 @@
1#!/bin/bash 1#!/bin/bash
2 2
3which xterm
4if [ "$?" -eq 0 ];
5then
6 echo "TESTING: xterm x11"
7 ./xterm-x11.exp
8else
9 echo "TESTING: xterm not found"
10fi
11
3which firefox 12which firefox
4if [ "$?" -eq 0 ]; 13if [ "$?" -eq 0 ];
5then 14then
@@ -22,8 +31,17 @@ which transmission-gtk
22if [ "$?" -eq 0 ]; 31if [ "$?" -eq 0 ];
23then 32then
24 echo "TESTING: transmission-gtk x11" 33 echo "TESTING: transmission-gtk x11"
25 ./transmission-gtk.exp 34 ./transmission-gtk-x11.exp
26else 35else
27 echo "TESTING: transmission-gtk not found" 36 echo "TESTING: transmission-gtk not found"
28fi 37fi
29 38
39which icedove
40if [ "$?" -eq 0 ];
41then
42 echo "TESTING: icedove x11"
43 ./icedove-x11.exp
44else
45 echo "TESTING: chromium not found"
46fi
47