forked from Docker/baseimage-docker
Add unit tests
This commit is contained in:
22
test/test.sh
Normal file
22
test/test.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
set -o pipefail
|
||||
|
||||
function ok()
|
||||
{
|
||||
echo " OK"
|
||||
}
|
||||
|
||||
function fail()
|
||||
{
|
||||
echo " FAIL"
|
||||
exit 1
|
||||
}
|
||||
|
||||
echo "Checking whether all services are running..."
|
||||
services=`sv status /etc/service/*`
|
||||
status=$?
|
||||
if [[ "$status" != 0 || "$services" = "" || "$services" =~ down ]]; then
|
||||
fail
|
||||
else
|
||||
ok
|
||||
fi
|
||||
Reference in New Issue
Block a user