mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-26 01:34:52 +00:00
Without `-depth` find will first `rm -rf foo` and then try to recurse into `foo` resulting in `No such file or directory`. With this the various `|| true` suffixes should no longer be required. Lastly, in test/cases/040_packages/013_mkimage/test.sh cleanup any `disk.qcow2*` detritus as well as the image itself. Signed-off-by: Ian Campbell <ian.campbell@docker.com>
24 lines
470 B
Bash
24 lines
470 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 . -depth -iname "test-sysctl*" -not -iname "*.yml" -exec rm -rf {} \;
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
moby build -output kernel+initrd test-sysctl.yml
|
|
RESULT="$(linuxkit run test-sysctl)"
|
|
echo "${RESULT}"
|
|
echo "${RESULT}" | grep -q "suite PASSED"
|
|
|
|
exit 0
|