aboutsummaryrefslogtreecommitdiffstats
path: root/test/test-apps-x11.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 16:16:51 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 16:16:51 -0400
commit7e1c057aeda3b598838cb66b9e827fc087f70c54 (patch)
tree6d13b82ed69f1d3a5b5973072e2b5cc3ea3eca16 /test/test-apps-x11.sh
parenthexchat profile (diff)
downloadfirejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.gz
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.zst
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.zip
make testing
Diffstat (limited to 'test/test-apps-x11.sh')
-rwxr-xr-xtest/test-apps-x11.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/test-apps-x11.sh b/test/test-apps-x11.sh
deleted file mode 100755
index 93d984501..000000000
--- a/test/test-apps-x11.sh
+++ /dev/null
@@ -1,47 +0,0 @@
1#!/bin/bash
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
12which firefox
13if [ "$?" -eq 0 ];
14then
15 echo "TESTING: firefox x11"
16 ./firefox-x11.exp
17else
18 echo "TESTING: firefox not found"
19fi
20
21which chromium
22if [ "$?" -eq 0 ];
23then
24 echo "TESTING: chromium x11"
25 ./chromium-x11.exp
26else
27 echo "TESTING: chromium not found"
28fi
29
30which transmission-gtk
31if [ "$?" -eq 0 ];
32then
33 echo "TESTING: transmission-gtk x11"
34 ./transmission-gtk-x11.exp
35else
36 echo "TESTING: transmission-gtk not found"
37fi
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