mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-10 04:12:13 +00:00
11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "dm-crypt test suite FAILED\n" >&1
|
|
exit 1
|
|
}
|
|
|
|
[ -b /dev/mapper/it_is_encrypted ] || failed
|
|
|
|
printf "dm-crypt test suite PASSED\n" >&1
|