grub2: bring back build of aros-side grub2 tools
[AROS.git] / arch / all-pc / boot / grub2-aros / tests / test_sha512sum.in
blobd5ef7f9ea62d1c9749c6a134580dace95fa7624a
1 #! /bin/bash
3 # create a randome file
4 file="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1
5 cat >$file <<EOF
6 hello world!
7 EOF
9 . "@builddir@/grub-core/modinfo.sh"
11 if [ x"${grub_modinfo_platform}" = xemu ]; then
12 grub_file="(host)$file"
13 else
14 grub_file="/boot/grub/file"
18 outfile1="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1
19 @builddir@/grub-shell --files=/boot/grub/file=$file >$outfile1 <<EOF
20 sha512sum $grub_file
21 EOF
23 outfile2="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1
24 sha512sum $file >$outfile2
26 SHA1=`cat $outfile1 | tr -d '\n' | cut -f1 -d\ `
27 SHA2=`cat $outfile2 | cut -f1 -d\ `
29 if test "$SHA1" = "$SHA2"; then
30 rm -f ${outfile1} ${outfile2}
31 exit 0
32 else
33 echo "GRUB sha512sum output did not match sha512sum output."
34 echo "See diff -u ${outfile1} ${outfile2}"
35 exit 1