mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
tests.sh has a bunch of shell setup that's sourced in a number of other scripts. It _doesn't_ actually run a bunch of tests, which is kind of what the name suggests. So rename it to be more obvious. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44 lines
704 B
Bash
Executable file
44 lines
704 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. ./testutils.sh
|
|
|
|
for x; do
|
|
shift
|
|
if [ "$x" = "-n" ]; then
|
|
for x; do
|
|
shift
|
|
if [ "$x" = "--" ]; then
|
|
break;
|
|
fi
|
|
NOCHECKS="$NOCHECKS $x"
|
|
done
|
|
break;
|
|
fi
|
|
if [ "$x" = "--" ]; then
|
|
break;
|
|
fi
|
|
YESCHECKS="$YESCHECKS $x"
|
|
done
|
|
|
|
LOG=tmp.log.$$
|
|
rm -f $LOG
|
|
trap "rm -f $LOG" 0
|
|
|
|
verbose_run_log "$LOG" $VALGRIND "$DTC" -o /dev/null "$@"
|
|
ret="$?"
|
|
|
|
FAIL_IF_SIGNAL $ret
|
|
|
|
for c in $YESCHECKS; do
|
|
if ! grep -E "(ERROR|Warning) \($c\):" $LOG > /dev/null; then
|
|
FAIL "Failed to trigger check \"$c\""
|
|
fi
|
|
done
|
|
|
|
for c in $NOCHECKS; do
|
|
if grep -E "(ERROR|Warning) \($c\):" $LOG > /dev/null; then
|
|
FAIL "Incorrectly triggered check \"$c\""
|
|
fi
|
|
done
|
|
|
|
PASS
|