]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/usr.bin/env/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / usr.bin / env / Makefile
1 # $FreeBSD$
2
3 TESTPGM?=TestProgramNotSpecifed
4
5 all:
6         @echo "Note that the 'env' command uses its own regression suite,"
7         @echo "which uses a single data file and a script written in ruby."
8         @echo "By default it will test /usr/bin/env"
9         @echo
10         @ruby regress-sb.rb --rgdata=${.CURDIR}/regress-env.rgdata
11
12 #   A version which allows the user to specify which executable of `env'
13 #   should be tested, e.g.:    make testenv TESTPROG=/usr/bin/env-rel6
14 #   This will probably need a bit more thought...
15 testenv:
16         @ruby regress-sb.rb --rgdata=${.CURDIR}/regress-env.rgdata \
17          --testpgm=${TESTPGM}