ieee1275: split up grub_machine_get_bootlocation
[grub.git] / tests / grub_script_no_commands.in
1 #! @BUILD_SHEBANG@
2 set -e
3
4 # grub-script-check refuses to pass a file with no commands; this usually
5 # indicates a bug in the code generating that file.
6
7 @builddir@/grub-script-check <<EOF && exit 1
8
9 EOF
10
11 @builddir@/grub-script-check <<EOF && exit 1
12 # comment
13 EOF
14
15 @builddir@/grub-script-check <<EOF && exit 1
16 # comment 1
17 # comment 2
18
19 EOF
20
21 exit 0