You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
. ./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
|