diff options
author | brd <brd@FreeBSD.org> | 2014-10-02 19:53:37 +0000 |
---|---|---|
committer | brd <brd@FreeBSD.org> | 2014-10-02 19:53:37 +0000 |
commit | 1319daf6688fee426cae9267e4467a62398a4c14 (patch) | |
tree | 3b0e8e35fc181349f55bdf19bdd185cd6716313a /usr.sbin/pw/Makefile | |
parent | 3f8a9f0ec1e26be6f9b95c487f3aca4c44a53128 (diff) | |
download | FreeBSD-src-1319daf6688fee426cae9267e4467a62398a4c14.zip FreeBSD-src-1319daf6688fee426cae9267e4467a62398a4c14.tar.gz |
- Add a test for bug 191427 where pw(8) will go into an infinite loop
Reviewed by: will
MFC after: 1 month
Diffstat (limited to 'usr.sbin/pw/Makefile')
-rw-r--r-- | usr.sbin/pw/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/pw/Makefile b/usr.sbin/pw/Makefile index eae0b87..8c5acf9 100644 --- a/usr.sbin/pw/Makefile +++ b/usr.sbin/pw/Makefile @@ -11,4 +11,10 @@ WARNS?= 2 DPADD= ${LIBCRYPT} ${LIBUTIL} LDADD= -lcrypt -lutil +.include <src.opts.mk> + +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include <bsd.prog.mk> |