grub/tests/help_test.in
Vladimir 'phcoder' Serbinenko f7457fb231 Add few new tests.
2013-04-29 12:25:57 +02:00

16 lines
360 B
Bash

#! /bin/bash
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