Files
linuxkit/test/cases/040_packages/000_sysctl/test.sh
Justin Cormack 345a294b5e Add a test case for the sysctl package
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-05-19 22:05:08 +01:00

24 lines
478 B
Bash

#!/bin/sh
# SUMMARY: Check that the sysctl config works
# LABELS:
# REPEAT:
# AUTHOR: Justin Cormack <justin.cormack@docker.com>
set -e
# Source libraries. Uncomment if needed/defined
#. "${RT_LIB}"
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
clean_up() {
find . -iname "test-sysctl*" -not -iname "*.yml" -exec rm -rf {} \;
}
trap clean_up EXIT
# Test code goes here
moby build test-sysctl
RESULT="$(linuxkit run qemu test-sysctl)"
echo "${RESULT}" | grep -q "suite PASSED"
exit 0