In this case it does not hurt to increase bash execution verbosity so we can get more insight in case of issues. Signed-off-by: Leo Sandoval <lsandova@redhat.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
#! @BUILD_SHEBANG@
|
|
set -ex
|
|
|
|
. "@builddir@/grub-core/modinfo.sh"
|
|
|
|
out=`echo functional_test asn1_test | @builddir@/grub-shell`
|
|
|
|
if [ "$(echo "$out" | tail -n 1)" != "ALL TESTS PASSED" ]; then
|
|
echo "ASN.1 test failure: $out"
|
|
exit 1
|
|
fi
|