There is no reason to fail a test if the required testing tool is not present on the system, so skip the test instead of failing it. Signed-off-by: Leo Sandoval <lsandova@redhat.com> Reviewed-by: Andrew Hamilton <adhamilt@gmail.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
29 lines
632 B
Plaintext
29 lines
632 B
Plaintext
#!@BUILD_SHEBANG@
|
|
|
|
set -e
|
|
|
|
if [ "x$EUID" = "x" ] ; then
|
|
EUID=`id -u`
|
|
fi
|
|
|
|
if [ "$EUID" != 0 ] ; then
|
|
exit 99
|
|
fi
|
|
|
|
if ! which zpool >/dev/null 2>&1; then
|
|
echo "zpool not installed; cannot test zfs."
|
|
exit 77
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" zfs
|
|
"@builddir@/grub-fs-tester" zfs_lzjb
|
|
"@builddir@/grub-fs-tester" zfs_gzip
|
|
"@builddir@/grub-fs-tester" zfs_zle
|
|
"@builddir@/grub-fs-tester" zfs_zstd
|
|
"@builddir@/grub-fs-tester" zfs_raidz3
|
|
"@builddir@/grub-fs-tester" zfs_raidz2
|
|
"@builddir@/grub-fs-tester" zfs_raidz
|
|
"@builddir@/grub-fs-tester" zfs_mirror
|
|
"@builddir@/grub-fs-tester" zfs_stripe
|
|
"@builddir@/grub-fs-tester" zfs_caseins
|