mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-05-08 21:06:38 +00:00
This is less confusing as there is also an output option to set the file. See https://github.com/moby/tool/pull/146 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
24 lines
470 B
Bash
24 lines
470 B
Bash
#!/bin/sh
|
|
# SUMMARY: Check that the sysctl config works
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
clean_up() {
|
|
find . -depth -iname "test-sysctl*" -not -iname "*.yml" -exec rm -rf {} \;
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
moby build -format kernel+initrd test-sysctl.yml
|
|
RESULT="$(linuxkit run test-sysctl)"
|
|
echo "${RESULT}"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|