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.
25 lines
417 B
25 lines
417 B
#! /bin/sh |
|
|
|
SRCDIR=`dirname "$0"` |
|
. "$SRCDIR/testutils.sh" |
|
|
|
LOG=tmp.log.$$ |
|
EXPECT=tmp.expect.$$ |
|
rm -f $LOG $EXPECT |
|
trap "rm -f $LOG $EXPECT" 0 |
|
|
|
expect="$1" |
|
printf '%b\n' "$expect" > $EXPECT |
|
shift |
|
|
|
verbose_run_log_check "$LOG" $VALGRIND $DTGET "$@" |
|
|
|
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
|
|
|