aboutsummaryrefslogtreecommitdiffstats
path: root/test/sysutils/sysutils.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-07-31 10:06:41 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-07-31 10:06:41 -0400
commit59cd5a6b6bb90d316d7f628fd6fc2df9ff2b17ab (patch)
treeb8e44859848ece18a81e63afc7910d0d0a4ca544 /test/sysutils/sysutils.sh
parentMerge pull request #662 from reinerh/master (diff)
downloadfirejail-59cd5a6b6bb90d316d7f628fd6fc2df9ff2b17ab.tar.gz
firejail-59cd5a6b6bb90d316d7f628fd6fc2df9ff2b17ab.tar.zst
firejail-59cd5a6b6bb90d316d7f628fd6fc2df9ff2b17ab.zip
cleanup and some new tests
Diffstat (limited to 'test/sysutils/sysutils.sh')
-rwxr-xr-xtest/sysutils/sysutils.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/sysutils/sysutils.sh b/test/sysutils/sysutils.sh
index d75738f97..315b73c9d 100755
--- a/test/sysutils/sysutils.sh
+++ b/test/sysutils/sysutils.sh
@@ -60,3 +60,21 @@ else
60 echo "TESTING SKIP: less not found" 60 echo "TESTING SKIP: less not found"
61fi 61fi
62 62
63which file
64if [ "$?" -eq 0 ];
65then
66 echo "TESTING: file"
67 ./file.exp
68else
69 echo "TESTING SKIP: file not found"
70fi
71
72which tar
73if [ "$?" -eq 0 ];
74then
75 echo "TESTING: tar"
76 ./tar.exp
77else
78 echo "TESTING SKIP: tar not found"
79fi
80