mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-12 21:11:36 +00:00
The latest version of the `moby` tool now requires that the output formats be specified in the CLI not in the yaml file. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
23 lines
455 B
Bash
23 lines
455 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 . -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}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|