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>
40 lines
809 B
Bash
Executable file
40 lines
809 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# Run script for fdtput tests
|
|
# We run fdtput to update the device tree, then fdtget to check it
|
|
|
|
# Usage
|
|
# fdtput-runtest.sh name expected_output dtb_file node property flags value
|
|
|
|
SRCDIR=`dirname "$0"`
|
|
. "$SRCDIR/testutils.sh"
|
|
|
|
LOG=tmp.log.$$
|
|
EXPECT=tmp.expect.$$
|
|
rm -f $LOG $EXPECT
|
|
trap "rm -f $LOG $EXPECT" 0
|
|
|
|
expect="$1"
|
|
echo $expect >$EXPECT
|
|
dtb="$2"
|
|
node="$3"
|
|
property="$4"
|
|
flags="$5"
|
|
shift 5
|
|
value="$@"
|
|
|
|
# First run fdtput
|
|
verbose_run_check $VALGRIND "$DTPUT" "$dtb" "$node" "$property" $value $flags
|
|
|
|
# Now fdtget to read the value
|
|
verbose_run_log_check "$LOG" $VALGRIND "$DTGET" "$dtb" "$node" "$property" $flags
|
|
|
|
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
|