aboutsummaryrefslogtreecommitdiffstats
path: root/test/sysutils/sysutils.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/sysutils/sysutils.sh')
-rwxr-xr-xtest/sysutils/sysutils.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/sysutils/sysutils.sh b/test/sysutils/sysutils.sh
index bfe723047..a46cfb1ad 100755
--- a/test/sysutils/sysutils.sh
+++ b/test/sysutils/sysutils.sh
@@ -78,3 +78,37 @@ then
78else 78else
79 echo "TESTING SKIP: ping not found" 79 echo "TESTING SKIP: ping not found"
80fi 80fi
81
82if command -v dig
83then
84 echo "TESTING: dig"
85 ./dig.exp
86else
87 echo "TESTING SKIP: dig not found"
88fi
89
90if command -v host
91then
92 echo "TESTING: host"
93 ./host.exp
94else
95 echo "TESTING SKIP: host not found"
96fi
97
98if command -v nslookup
99then
100 echo "TESTING: nslookup"
101 ./host.exp
102else
103 echo "TESTING SKIP: nslookup not found"
104fi
105
106if command -v man
107then
108 echo "TESTING: man"
109 ./man.exp
110else
111 echo "TESTING SKIP: man not found"
112fi
113
114