13 lines
230 B
Text
13 lines
230 B
Text
|
#! /bin/bash
|
||
|
set -e
|
||
|
|
||
|
. "@builddir@/grub-core/modinfo.sh"
|
||
|
|
||
|
out=`echo all_functional_test | @builddir@/grub-shell`
|
||
|
|
||
|
if [ "$(echo "$out" | tail -n 1)" != "ALL TESTS PASSED" ]; then
|
||
|
echo "Functional test failure: $out"
|
||
|
exit 1
|
||
|
fi
|
||
|
|