mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 00:10:16 +00:00
Signed-off-by: Avi Deitcher <avi@deitcher.net> Signed-off-by: Avi Deitcher <avi@deitcher.net>
25 lines
434 B
Bash
25 lines
434 B
Bash
#!/bin/sh
|
|
# SUMMARY: Run containerd test
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
NAME=containerd
|
|
|
|
clean_up() {
|
|
rm -rf ${NAME}-*
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
linuxkit build --format kernel+initrd --name "${NAME}" test.yml
|
|
RESULT="$(linuxkit run --mem 3072 --disk size=2G ${NAME})"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|