linuxkit/test/cases/000_build/020_binds/check.sh
Avi Deitcher bcd36a4661 support merge yaml flags
Signed-off-by: Avi Deitcher <avi@deitcher.net>
2020-05-18 17:41:36 +03:00

16 lines
314 B
Bash
Executable File

#!/bin/sh
set -x
function failed {
printf "bindmerge test suite FAILED\n" >&1
exit 1
}
# the very fact that this is running means that the bind worked, so just need to check that the defaults also
# are there
[ -d /dev/mapper ] || failed
[ -d /hostroot ] || failed
printf "bindmerge test suite PASSED\n" >&1