I explicitly meant to not move any of this over to the new m4(1) framework,

even slightly.  Grrr CVS.
This commit is contained in:
jmallett 2002-06-24 14:29:19 +00:00
parent 023a3f5ec0
commit 7136d91562
2 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $FreeBSD$
all:
@m4 ${.CURDIR}/../regress.m4 ${.CURDIR}/regress.sh | sh /dev/stdin ${.CURDIR}
@sh ${.CURDIR}/regress.sh ${.CURDIR}

View File

@ -1,6 +1,13 @@
# $FreeBSD$
REGRESSION_START($1)
# Go into the regression test directory, handed to us by make(1)
TESTDIR=$1
if [ -z "$TESTDIR" ]; then
TESTDIR=.
fi
cd $TESTDIR
STATUS=0
for test in GNU/changecom changecom; do
echo "Running test $test"
@ -28,4 +35,6 @@ for test in GNU/changecom changecom; do
fi
done
exit $STATUS
REGRESSION_END()