mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 14:56:11 +00:00
Don't rely on systctl test package. Instead, add the check shell script to the image and execute it with a standard Alpine image. While at it, make the test more verbose. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
25 lines
479 B
Bash
25 lines
479 B
Bash
#!/bin/sh
|
|
# SUMMARY: Check that the sysctl config works
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -e
|
|
set -v
|
|
|
|
# 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 -output kernel+initrd test-sysctl
|
|
RESULT="$(linuxkit run qemu -kernel test-sysctl)"
|
|
echo "${RESULT}"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|