aboutsummaryrefslogtreecommitdiffstats
path: root/test/sysutils/sysutils.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/sysutils/sysutils.sh')
-rwxr-xr-xtest/sysutils/sysutils.sh31
1 files changed, 23 insertions, 8 deletions
diff --git a/test/sysutils/sysutils.sh b/test/sysutils/sysutils.sh
index a46cfb1ad..bab243c4b 100755
--- a/test/sysutils/sysutils.sh
+++ b/test/sysutils/sysutils.sh
@@ -15,14 +15,6 @@ else
15 echo "TESTING SKIP: cpio not found" 15 echo "TESTING SKIP: cpio not found"
16fi 16fi
17 17
18#if command -v strings
19#then
20# echo "TESTING: strings"
21# ./strings.exp
22#else
23# echo "TESTING SKIP: strings not found"
24#fi
25
26if command -v gzip 18if command -v gzip
27then 19then
28 echo "TESTING: gzip" 20 echo "TESTING: gzip"
@@ -111,4 +103,27 @@ else
111 echo "TESTING SKIP: man not found" 103 echo "TESTING SKIP: man not found"
112fi 104fi
113 105
106if command -v wget
107then
108 echo "TESTING: wget"
109 ./wget.exp
110else
111 echo "TESTING SKIP: wget not found"
112fi
113
114if command -v curl
115then
116 echo "TESTING: curl"
117 ./curl.exp
118else
119 echo "TESTING SKIP: curl not found"
120fi
121
122if command -v strings
123then
124 echo "TESTING: strings"
125 ./strings.exp
126else
127 echo "TESTING SKIP: strings not found"
128fi
114 129