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
|
#!/bin/sh
# dctrl-tools - Debian control file inspection tools
# Copyright (C) 2007 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
set -e
trap "rm .testout .diffout 2>/dev/null" \
EXIT ABRT BUS FPE HUP ILL QUIT SEGV TERM
GREP_DCTRL=$PWD/grep-dctrl/grep-dctrl
SORT_DCTRL=$PWD/sort-dctrl/sort-dctrl
TBL_DCTRL=$PWD/tbl-dctrl/tbl-dctrl
JOIN_DCTRL=$PWD/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_err=$tst_base.fails
if [ ! -r $tst_in ] ; then
tst_in=/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
if sh $tst < $tst_in > .testout ; then
if diff -au $tst_out .testout > .diffout ; then
echo "ok."
else
echo "FAILED."
cat .diffout
rv=1
fi
else
if [ -r $tst_err ] ; then
echo "ok."
else
echo "FAILED."
rv=1
fi
fi
done
exit $rv
|