This commit is contained in:
netblue30 2023-02-06 14:13:12 -05:00
parent 1be9bb3c78
commit 4a4bd8a617
3 changed files with 9 additions and 1 deletions

View file

@ -376,7 +376,7 @@ $(TEST_TARGETS):
# extract some data about the testing setup: kernel, network connectivity, user
lab-setup:; uname -r; pwd; whoami; cat /etc/resolv.conf; cat /etc/hosts
lab-setup:; uname -r; pwd; whoami; cat /etc/resolv.conf; cat /etc/hosts; ls /etc
test: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters
echo "TEST COMPLETE"

View file

@ -127,3 +127,11 @@ else
echo "TESTING SKIP: strings not found"
fi
if command -v whois
then
echo "TESTING: whois"
./whois.exp
else
echo "TESTING SKIP: whois not found"
fi