blob: b08cf201382e043e6b2fc07fd6f7a410aa051dca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! @BUILD_SHEBANG@
set -e
. "@builddir@/grub-core/modinfo.sh"
template="Usage: help [PATTERN ...]
Show a help message.
-h, --help Display this help and exit.
-u, --usage Display the usage of this command and exit.
Hello World"
outpu="$(echo 'help help; hello' | @builddir@/grub-shell)"
if [ "$template" != "$outpu" ]; then
exit 1
fi
|