grub2: bring back build of aros-side grub2 tools
[AROS.git] / arch / all-pc / boot / grub2-aros / tests / help_test.in
blobe780924ef7b02245b6009956bd2baab3623aa5a8
1 #! /bin/bash
2 set -e
4 . "@builddir@/grub-core/modinfo.sh"
6 template="Usage: help [PATTERN ...]
7 Show a help message.
9 -h, --help Display this help and exit.
10 -u, --usage Display the usage of this command and exit.
11 Hello World"
12 outpu="$(echo 'help help; hello' | @builddir@/grub-shell)"
14 if [ "$template" != "$outpu" ]; then
15 exit 1