Add few new tests.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-29 12:25:57 +02:00
parent e2f27a8c53
commit f7457fb231
10 changed files with 337 additions and 1 deletions

16
tests/help_test.in Normal file
View file

@ -0,0 +1,16 @@
#! /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