aboutsummaryrefslogtreecommitdiffstats
path: root/test/test.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-10-15 12:38:58 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-10-15 12:38:58 -0400
commit84b984b7d1925bd937606e18e0605d7517f5f686 (patch)
tree9e0ace227d8375cd5c73775f62a3a3313fa83cf8 /test/test.sh
parentnew syscalls added to default seccomp filter (diff)
downloadfirejail-84b984b7d1925bd937606e18e0605d7517f5f686.tar.gz
firejail-84b984b7d1925bd937606e18e0605d7517f5f686.tar.zst
firejail-84b984b7d1925bd937606e18e0605d7517f5f686.zip
testing
Diffstat (limited to 'test/test.sh')
-rwxr-xr-xtest/test.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/test.sh b/test/test.sh
index 2e7b1e2bc..bca7c41e9 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -206,6 +206,36 @@ else
206 echo "TESTING: evince not found" 206 echo "TESTING: evince not found"
207fi 207fi
208 208
209which icedove
210if [ "$?" -eq 0 ];
211then
212 echo "TESTING: icedove"
213 ./icedove.exp
214else
215 echo "TESTING: icedove not found"
216fi
217
218which vlc
219if [ "$?" -eq 0 ];
220then
221 echo "TESTING: vlc"
222 ./vlc.exp
223else
224 echo "TESTING: vlc not found"
225fi
226
227which fbreader
228if [ "$?" -eq 0 ];
229then
230 echo "TESTING: fbreader"
231 ./vlc.exp
232else
233 echo "TESTING: fbreader not found"
234fi
235
236
237
238
209echo "TESTING: PID" 239echo "TESTING: PID"
210./pid.exp 240./pid.exp
211 241