mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-09 02:42:58 +00:00

quite some time locally. Most of the test require root so they are skipped when run without necessarry privelegies.
21 lines
311 B
Bash
21 lines
311 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "x$EUID" = "x" ] ; then
|
|
EUID=`id -u`
|
|
fi
|
|
|
|
if [ "$EUID" != 0 ] ; then
|
|
exit 77
|
|
fi
|
|
|
|
if ! which mkfs.reiserfs >/dev/null 2>&1; then
|
|
echo "mkfs.reiserfs not installed; cannot test reiserfs."
|
|
exit 77
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" reiserfs
|
|
"@builddir@/grub-fs-tester" reiserfs_old
|
|
|