mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-31 14:41:10 +00:00
28 lines
522 B
Bash
Executable File
28 lines
522 B
Bash
Executable File
#!/bin/sh
|
|
# SUMMARY: Check that the userdata is found and read when on a cidata partition
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -ex
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
NAME=bindtest
|
|
DISK=disk.img
|
|
|
|
clean_up() {
|
|
rm -rf ${NAME}-* ${DISK}
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
|
|
linuxkit build --format kernel+initrd --name ${NAME} test.yml
|
|
RESULT="$(linuxkitrun --disk file=${DISK},size=32M ${NAME})"
|
|
echo "${RESULT}"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|