mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 18:22:26 +00:00

quite some time locally. Most of the test require root so they are skipped when run without necessarry privelegies.
13 lines
256 B
Bash
13 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
|