mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-31 06:34:17 +00:00
Signed-off-by: Federico Pellegatta <12744504+federico-pellegatta@users.noreply.github.com>
14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
function failed {
|
|
printf "extend test suite FAILED\n" >&1
|
|
exit 1
|
|
}
|
|
|
|
[ -f /var/lib/docker/bar ] || failed
|
|
touch /var/lib/docker/foo || failed
|
|
df -h | grep /var/lib/docker | grep -qE "[4-5][0-9]{2}\.[0-9]{1,}M" || failed
|
|
printf "extend test suite PASSED\n" >&1
|