7d44ff7de6
quite some time locally. Most of the test require root so they are skipped when run without necessarry privelegies.
12 lines
256 B
Bash
12 lines
256 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if ! which mksquashfs >/dev/null 2>&1; then
|
|
echo "mksquashfs not installed; cannot test squashfs."
|
|
exit 77
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" squash4_gzip
|
|
"@builddir@/grub-fs-tester" squash4_xz
|
|
"@builddir@/grub-fs-tester" squash4_lzo
|