aa522da9ff
meson runs out-of-tree, add absolute path location where necessary. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20191009102025.10179-3-marcandre.lureau@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25 lines
417 B
Bash
Executable file
25 lines
417 B
Bash
Executable file
#! /bin/sh
|
|
|
|
SRCDIR=`dirname "$0"`
|
|
. "$SRCDIR/testutils.sh"
|
|
|
|
LOG=tmp.log.$$
|
|
EXPECT=tmp.expect.$$
|
|
rm -f $LOG $EXPECT
|
|
trap "rm -f $LOG $EXPECT" 0
|
|
|
|
expect="$1"
|
|
printf '%b\n' "$expect" > $EXPECT
|
|
shift
|
|
|
|
verbose_run_log_check "$LOG" $VALGRIND $DTGET "$@"
|
|
|
|
if cmp $EXPECT $LOG>/dev/null; then
|
|
PASS
|
|
else
|
|
if [ -z "$QUIET_TEST" ]; then
|
|
echo "EXPECTED :-:"
|
|
cat $EXPECT
|
|
fi
|
|
FAIL "Results differ from expected"
|
|
fi
|