mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
Several test scripts now have some code to check for a program returning a signal, and reporting a suitable failure. This patch moves this duplicated code into a helper function in tests.sh. At the same time we remove a bashism found in the current copies (using the non portablr $[ ] construct for arithmetic). Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
48 lines
786 B
Bash
48 lines
786 B
Bash
#! /bin/sh
|
|
|
|
# Run script for fdtput tests
|
|
# We run fdtput to update the device tree, thn fdtget to check it
|
|
|
|
# Usage
|
|
# fdtput-runtest.sh name expected_output dtb_file node property flags value
|
|
|
|
. ./tests.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 $VALGRIND "$DTPUT" "$dtb" "$node" "$property" $value $flags
|
|
ret="$?"
|
|
|
|
if [ "$ret" -ne 0 -a "$expect" = "ERR" ]; then
|
|
PASS
|
|
fi
|
|
|
|
FAIL_IF_SIGNAL $ret
|
|
|
|
# Now fdtget to read the value
|
|
verbose_run_log "$LOG" $VALGRIND "$DTGET" "$dtb" "$node" "$property" $flags
|
|
ret="$?"
|
|
|
|
FAIL_IF_SIGNAL $ret
|
|
|
|
diff $EXPECT $LOG
|
|
ret="$?"
|
|
|
|
if [ "$ret" -eq 0 ]; then
|
|
PASS
|
|
else
|
|
FAIL
|
|
fi
|