Files
linuxkit/test/cases/040_packages/003_ca-certificates/test.sh
2017-11-20 17:06:54 +00:00

25 lines
450 B
Bash

#!/bin/sh
# SUMMARY: Check that the ca-certificates package works
# LABELS:
# REPEAT:
set -e
# Source libraries. Uncomment if needed/defined
#. "${RT_LIB}"
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
NAME=ca-certificates
clean_up() {
rm -rf ${NAME}-*
}
trap clean_up EXIT
# Test code goes here
linuxkit build -format kernel+initrd -name "${NAME}" test.yml
RESULT="$(linuxkit run $NAME)"
echo "${RESULT}"
echo "${RESULT}" | grep -q "suite PASSED"
exit 0