mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-04 20:41:23 +00:00
A few of these tests appear to be misnumbered, so renumber them. Signed-off-by: David Scott <dave@recoil.org>
25 lines
438 B
Bash
25 lines
438 B
Bash
#!/bin/sh
|
|
# SUMMARY: Check that the logwrite package works
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
NAME=logwrite
|
|
|
|
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 ${NAME})"
|
|
echo "${RESULT}"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|