mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-01 06:58:56 +00:00
16 lines
314 B
Bash
Executable File
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
|