]> git.proxmox.com Git - grub2.git/blob - tests/test_sha512sum.in
* tests/test_sha512sum.in: Make it work on emu.
[grub2.git] / tests / test_sha512sum.in
1 #! /bin/bash
2
3 # create a randome file
4 file=`mktemp`
5 cat >$file <<EOF
6 hello world!
7 EOF
8
9 . "@builddir@/grub-core/modinfo.sh"
10
11 if [ x"${grub_modinfo_platform}" = xemu ]; then
12 grub_file="(host)$file"
13 else
14 grub_file="/boot/grub/file"
15 fi
16
17
18 outfile1=`mktemp`
19 @builddir@/grub-shell --files=/boot/grub/file=$file >$outfile1 <<EOF
20 sha512sum $grub_file
21 EOF
22
23 outfile2=`mktemp`
24 sha512sum $file >$outfile2
25
26 SHA1=`cat $outfile1 | tr -d '\n' | cut -f1 -d\ `
27 SHA2=`cat $outfile2 | cut -f1 -d\ `
28
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
36 fi