mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-24 03:15:36 +00:00
25 lines
479 B
Bash
25 lines
479 B
Bash
#!/bin/sh
|
|
# SUMMARY: Check that the containerd command-line options have been enabled by init
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
NAME=init_containerd
|
|
|
|
clean_up() {
|
|
rm -rf ${NAME}-*
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
linuxkit build --format kernel+initrd --name "${NAME}" test.yml
|
|
RESULT="$(linuxkitrun $NAME)"
|
|
echo "${RESULT}"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|