mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 20:18:54 +00:00

quite some time locally. Most of the test require root so they are skipped when run without necessarry privelegies.
17 lines
386 B
Bash
17 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
|