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>
17 lines
405 B
Plaintext
17 lines
405 B
Plaintext
#!@BUILD_SHEBANG@
|
|
|
|
set -ex
|
|
|
|
outfile="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 99
|
|
|
|
"@builddir@/grub-syslinux2cfg" -r "@abs_top_srcdir@/tests/syslinux/ubuntu10.04" "@abs_top_srcdir@/tests/syslinux/ubuntu10.04/isolinux/isolinux.cfg" -o "$outfile"
|
|
|
|
echo "$outfile"
|
|
|
|
if ! diff -u "$outfile" "@builddir@/tests/syslinux/ubuntu10.04_grub.cfg"; then
|
|
echo "Mismatch in ubuntu10.04"
|
|
exit 1;
|
|
fi
|
|
|
|
exit 0
|