Integrate .../contrib/netbsd-tests/usr.bin/uniq into the FreeBSD test

suite as .../usr.bin/uniq/tests

Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-01-14 06:51:31 +00:00
parent 63d1fd5970
commit 71164a14d0
4 changed files with 35 additions and 0 deletions

View File

@ -660,6 +660,8 @@
.. ..
uuencode uuencode
.. ..
uniq
..
xargs xargs
.. ..
xinstall xinstall

View File

@ -1,6 +1,12 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93 # @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$ # $FreeBSD$
.include <src.opts.mk>
PROG= uniq PROG= uniq
.if ${MK_TESTS} != "no"
SUBDIR+= tests
.endif
.include <bsd.prog.mk> .include <bsd.prog.mk>

View File

@ -0,0 +1,16 @@
# $FreeBSD$
PACKAGE= tests
NETBSD_ATF_TESTS_SH= uniq_test
${PACKAGE}FILES+= d_basic.in
${PACKAGE}FILES+= d_basic.out
${PACKAGE}FILES+= d_counts.out
${PACKAGE}FILES+= d_input.in
${PACKAGE}FILES+= d_show_duplicates.out
${PACKAGE}FILES+= d_show_uniques.out
.include <netbsd-tests.test.mk>
.include <bsd.test.mk>

View File

@ -0,0 +1,11 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif