platform_external_dtc/tests/dtc-fails.sh
Marc-André Lureau aa522da9ff tests: allow out-of-tree test run
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>
2019-10-14 16:19:29 +11:00

31 lines
402 B
Bash
Executable file

#! /bin/sh
SRCDIR=`dirname "$0"`
. "$SRCDIR/testutils.sh"
if [ "$1" = "-n" ]; then
NEG="$1"
shift
fi
OUTPUT="$1"
shift
verbose_run $VALGRIND "$DTC" -o "$OUTPUT" "$@"
ret="$?"
FAIL_IF_SIGNAL $ret
if [ -n "$NEG" ]; then
if [ ! -e "$OUTPUT" ]; then
FAIL "Produced no output"
fi
else
if [ -e "$OUTPUT" ]; then
FAIL "Incorrectly produced output"
fi
fi
rm -f "$OUTPUT"
PASS