1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#!/bin/sh
# dctrl-tools - Debian control file inspection tools
# Copyright (C) 2007, 2010, 2011 Antti-Juhani Kaijanaho
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
set -e
trap "rm .testout .diffout .testerr .differr 2>/dev/null" \
EXIT ABRT BUS FPE HUP ILL QUIT SEGV TERM
GREP_DCTRL=../grep-dctrl/grep-dctrl
SORT_DCTRL=../sort-dctrl/sort-dctrl
TBL_DCTRL=../tbl-dctrl/tbl-dctrl
JOIN_DCTRL=../join-dctrl/join-dctrl
export GREP_DCTRL SORT_DCTRL TBL_DCTRL JOIN_DCTRL
cd tests
if [ $# -ge 1 ] ; then
tests=$@
else
tests=`ls -1 *.sh | sort`
fi
rv=0
for tst in $tests ; do
tst_base=`basename $tst .sh`
tst_in=$tst_base.in
tst_out=$tst_base.out
tst_ero=$tst_base.err
tst_err=$tst_base.fails
if [ ! -r $tst_in ] ; then
tst_in=/dev/null
fi
if [ ! -r $tst_ero ] ; then
tst_ero=/dev/null
fi
if [ ! -r $tst_out ] && [ ! -r $tst_err ] ; then
echo 1>&2 "neither $tst_out nor $tst_err exists"
exit 1
fi
if [ -r $tst_err ]; then
echo -n "$0: Test case $tst_base (expecting failure)..."
else
echo -n "$0: Test case $tst_base (expecting success)..."
fi
ok=true
if sh $tst < $tst_in > .testout 2> .testerr ; then
if diff -au $tst_out .testout > .diffout ; then
:
else
ok=false
fi
else
if [ -r $tst_err ] ; then
:
else
ok=false
fi
fi
if [ -r $tst_ero ] ; then
if diff -au $tst_ero .testerr > .differr ; then
:
else
ok=false
fi
fi
if $ok ; then
echo "ok."
else
echo "FAILED."
echo "stdout diff:"
cat .diffout
echo "stderr diff:"
cat .differr
rv=1
fi
done
exit $rv
|