12 lines
230 B
Bash
12 lines
230 B
Bash
#! /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
|
|
|