In this case it does not hurt to increase bash execution verbosity so we can get more insight in case of issues. Signed-off-by: Leo Sandoval <lsandova@redhat.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
17 lines
395 B
Plaintext
17 lines
395 B
Plaintext
#!@BUILD_SHEBANG@
|
|
|
|
set -ex
|
|
|
|
if ! which cpio >/dev/null 2>&1; then
|
|
echo "cpio not installed; cannot test cpio."
|
|
exit 77
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" cpio_bin
|
|
"@builddir@/grub-fs-tester" cpio_odc
|
|
"@builddir@/grub-fs-tester" cpio_newc
|
|
"@builddir@/grub-fs-tester" cpio_crc
|
|
"@builddir@/grub-fs-tester" cpio_ustar
|
|
"@builddir@/grub-fs-tester" cpio_hpbin
|
|
"@builddir@/grub-fs-tester" cpio_hpodc
|