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:
Juli Mallett 2002-06-24 14:29:19 +00:00
parent fa9fbb5f01
commit f0030ec090
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98760
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()