7d44ff7de6
quite some time locally. Most of the test require root so they are skipped when run without necessarry privelegies.
16 lines
386 B
Bash
16 lines
386 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
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
|