aboutsummaryrefslogtreecommitdiffstats
path: root/test/sysutils
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2018-04-26 10:36:27 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2018-04-26 10:36:27 -0400
commit14faf11d2da1bf31fb92fcec91b8a511e4a3f1a6 (patch)
tree874cbd6c97b02b94eeae89485b420133785d5310 /test/sysutils
parentstill tweaking baloo (diff)
downloadfirejail-14faf11d2da1bf31fb92fcec91b8a511e4a3f1a6.tar.gz
firejail-14faf11d2da1bf31fb92fcec91b8a511e4a3f1a6.tar.zst
firejail-14faf11d2da1bf31fb92fcec91b8a511e4a3f1a6.zip
centos testing
Diffstat (limited to 'test/sysutils')
-rwxr-xr-xtest/sysutils/sysutils.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/sysutils/sysutils.sh b/test/sysutils/sysutils.sh
index dd09e4533..6794af520 100755
--- a/test/sysutils/sysutils.sh
+++ b/test/sysutils/sysutils.sh
@@ -6,7 +6,7 @@
6export MALLOC_CHECK_=3 6export MALLOC_CHECK_=3
7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1)) 7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
8 8
9which cpio 9which cpio 2>/dev/null
10if [ "$?" -eq 0 ]; 10if [ "$?" -eq 0 ];
11then 11then
12 echo "TESTING: cpio" 12 echo "TESTING: cpio"
@@ -24,7 +24,7 @@ fi
24# echo "TESTING SKIP: strings not found" 24# echo "TESTING SKIP: strings not found"
25#fi 25#fi
26 26
27which gzip 27which gzip 2>/dev/null
28if [ "$?" -eq 0 ]; 28if [ "$?" -eq 0 ];
29then 29then
30 echo "TESTING: gzip" 30 echo "TESTING: gzip"
@@ -33,7 +33,7 @@ else
33 echo "TESTING SKIP: gzip not found" 33 echo "TESTING SKIP: gzip not found"
34fi 34fi
35 35
36which xzdec 36which xzdec 2>/dev/null
37if [ "$?" -eq 0 ]; 37if [ "$?" -eq 0 ];
38then 38then
39 echo "TESTING: xzdec" 39 echo "TESTING: xzdec"
@@ -42,7 +42,7 @@ else
42 echo "TESTING SKIP: xzdec not found" 42 echo "TESTING SKIP: xzdec not found"
43fi 43fi
44 44
45which xz 45which xz 2>/dev/null
46if [ "$?" -eq 0 ]; 46if [ "$?" -eq 0 ];
47then 47then
48 echo "TESTING: xz" 48 echo "TESTING: xz"
@@ -51,7 +51,7 @@ else
51 echo "TESTING SKIP: xz not found" 51 echo "TESTING SKIP: xz not found"
52fi 52fi
53 53
54which less 54which less 2>/dev/null
55if [ "$?" -eq 0 ]; 55if [ "$?" -eq 0 ];
56then 56then
57 echo "TESTING: less" 57 echo "TESTING: less"
@@ -60,7 +60,7 @@ else
60 echo "TESTING SKIP: less not found" 60 echo "TESTING SKIP: less not found"
61fi 61fi
62 62
63which file 63which file 2>/dev/null
64if [ "$?" -eq 0 ]; 64if [ "$?" -eq 0 ];
65then 65then
66 echo "TESTING: file" 66 echo "TESTING: file"
@@ -69,7 +69,7 @@ else
69 echo "TESTING SKIP: file not found" 69 echo "TESTING SKIP: file not found"
70fi 70fi
71 71
72which tar 72which tar 2>/dev/null
73if [ "$?" -eq 0 ]; 73if [ "$?" -eq 0 ];
74then 74then
75 echo "TESTING: tar" 75 echo "TESTING: tar"
@@ -78,7 +78,7 @@ else
78 echo "TESTING SKIP: tar not found" 78 echo "TESTING SKIP: tar not found"
79fi 79fi
80 80
81which ping 81which ping 2>/dev/null
82if [ "$?" -eq 0 ]; 82if [ "$?" -eq 0 ];
83then 83then
84 echo "TESTING: ping" 84 echo "TESTING: ping"