The erofs tests do not ever mount the generated erofs image. So root is not needed, as with the squashfs and iso9660 filesystems. Signed-off-by: Glenn Washburn <development@efficientek.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com> Reviewed-by: Sudhakar Kuppusamy <sudhakar@linux.ibm.com>
13 lines
267 B
Plaintext
13 lines
267 B
Plaintext
#!@BUILD_SHEBANG@
|
|
|
|
set -ex
|
|
|
|
if ! which mkfs.erofs >/dev/null 2>&1; then
|
|
echo "mkfs.erofs not installed; cannot test erofs."
|
|
exit 77
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" erofs_compact
|
|
"@builddir@/grub-fs-tester" erofs_extended
|
|
"@builddir@/grub-fs-tester" erofs_chunk
|