mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 08:44:24 +00:00
13 lines
228 B
Bash
Executable File
13 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "losetup test suite FAILED\n" >&1
|
|
exit 1
|
|
}
|
|
|
|
LOOPFILE=$(losetup /dev/loop0 2>/dev/null | cut -d' ' -f3)
|
|
|
|
[ "$LOOPFILE" = "/var/test.img" ] || failed
|
|
|
|
printf "losetup test suite PASSED\n" >&1
|