tpm2_key_protector: Enable build for powerpc_ieee1275
[grub.git] / tests / grub_script_expansion.in
blob98d5a9068a2852127e4ee0c242f11f761ac8084c
1 #! @BUILD_SHEBANG@
2 set -e
4 # Run GRUB script in a Qemu instance
5 # Copyright (C) 2010  Free Software Foundation, Inc.
7 # GRUB is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GRUB is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
20 disks=`echo ls | @builddir@/grub-shell`
21 disks=`echo "$disks"| grep -av '^Network protocols:$'| grep -av '^tftp http $'`
22 other=`echo insmod regexp\; echo \* | @builddir@/grub-shell`
23 for d in $disks; do
24     if echo "$d" |grep ',' >/dev/null; then
25         if echo "$other" | grep -F -- "$d" >/dev/null; then
26             echo "$d should not occur in * expansion" >&2
27             exit 1
28         fi
29     else
30         if ! echo "$other" | grep -F -- "$d" >/dev/null; then
31             echo "$d missing from * expansion" >&2
32             exit 1
33         fi
34     fi
35 done
37 other=`echo insmod regexp\; echo '(*)' | @builddir@/grub-shell`
38 for d in $disks; do
39     if ! echo "$other" | grep -F -- "$d" >/dev/null; then
40         echo "$d missing from (*) expansion" >&2
41         exit 1
42     fi
43 done