freebsd-dev/tools/regression/usr.bin/env/Makefile
Ulrich Spörlein 54673381cd Add missing newline in last line of file.
Uncovered via:	fromcvs vs. svn
Approved by:	ed (co-mentor)
2010-02-16 09:10:21 +00:00

18 lines
590 B
Makefile

# $FreeBSD$
TESTPGM?=TestProgramNotSpecifed
all:
@echo "Note that the 'env' command uses its own regression suite,"
@echo "which uses a single data file and a script written in ruby."
@echo "By default it will test /usr/bin/env"
@echo
@ruby regress-sb.rb --rgdata=${.CURDIR}/regress-env.rgdata
# A version which allows the user to specify which executable of `env'
# should be tested, e.g.: make testenv TESTPROG=/usr/bin/env-rel6
# This will probably need a bit more thought...
testenv:
@ruby regress-sb.rb --rgdata=${.CURDIR}/regress-env.rgdata \
--testpgm=${TESTPGM}