diff options
author | ngie <ngie@FreeBSD.org> | 2015-10-18 05:49:58 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-10-18 05:49:58 +0000 |
commit | 8b6c22e2879027d27992797f42655171328c46d2 (patch) | |
tree | beee0b4861c261d00b00b793b95ba04988fdf468 /bin/dd/Makefile | |
parent | 5145e8ee6b08f444a75801e5448af27c3df60fbc (diff) | |
parent | e84cdeae2f06fd326af8175317ce7ef9a9ff562d (diff) | |
download | FreeBSD-src-8b6c22e2879027d27992797f42655171328c46d2.zip FreeBSD-src-8b6c22e2879027d27992797f42655171328c46d2.tar.gz |
Integrate contrib/netbsd-tests/bin/dd into the FreeBSD test suite as
bin/dd/tests
Ensure fdescfs is mounted on /dev/fd/ for the length testcase as it's used
in validating the characters read from /dev/zero
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'bin/dd/Makefile')
-rw-r--r-- | bin/dd/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/dd/Makefile b/bin/dd/Makefile index eb8ec85..5f07dbc 100644 --- a/bin/dd/Makefile +++ b/bin/dd/Makefile @@ -1,6 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +.include <src.opts.mk> + PROG= dd SRCS= args.c conv.c conv_tab.c dd.c misc.c position.c @@ -24,4 +26,8 @@ test: ${PROG} gen .endfor @rm -f gen +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include <bsd.prog.mk> |