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>
15 lines
284 B
Bash
Executable file
15 lines
284 B
Bash
Executable file
#! /bin/sh
|
|
|
|
SRCDIR=`dirname "$0"`
|
|
. "$SRCDIR/testutils.sh"
|
|
|
|
verbose_run $VALGRIND "$DTC" -o/dev/null "$@"
|
|
ret="$?"
|
|
|
|
if [ "$ret" -gt 127 ]; then
|
|
FAIL "dtc killed by signal (ret=$ret)"
|
|
elif [ "$ret" != "1" ]; then
|
|
FAIL "dtc returned incorrect status $ret instead of 1"
|
|
fi
|
|
|
|
PASS
|