grub/tests/help_test.in
Vladimir Serbinenko a827807a13 Fix shebang for termux.
Termux doesn't have a /bin/sh. So we needto use $SHELL.
Keep /bin/sh as much as possible.
2017-05-03 12:49:31 +02:00

16 lines
366 B
Text

#! @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