Add supporting changes for Add limited sandbox capability to "make check"
Non-tests/... changes: - Add HAS_TESTS= to Makefiles with libraries and programs to enable iteration and propagate the appropriate environment down to *.test.mk. tests/... changes: - Add appropriate support Makefile.inc's to set HAS_TESTS in a minimal manner, since tests/... is a special subdirectory tree compared to the others. MFC after: 2 months MFC with: r322511 Reviewed by: arch (silence), testing (silence) Differential Revision: D12014
This commit is contained in:
commit
188e46ab03
@ -6,6 +6,7 @@
|
|||||||
PACKAGE=runtime
|
PACKAGE=runtime
|
||||||
PROG= cat
|
PROG= cat
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PACKAGE=runtime
|
PACKAGE=runtime
|
||||||
PROG= chmod
|
PROG= chmod
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -7,6 +7,7 @@ PACKAGE=runtime
|
|||||||
PROG= date
|
PROG= date
|
||||||
SRCS= date.c netdate.c vary.c
|
SRCS= date.c netdate.c vary.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -38,6 +38,7 @@ test: ${PROG} gen
|
|||||||
|
|
||||||
@rm -f gen 1M_zeroes* obs_zeroes
|
@rm -f gen 1M_zeroes* obs_zeroes
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PACKAGE=runtime
|
PACKAGE=runtime
|
||||||
PROG= echo
|
PROG= echo
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -12,6 +12,7 @@ CFLAGS+= -fwrapv
|
|||||||
|
|
||||||
NO_WMISSING_VARIABLE_DECLARATIONS=
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -10,6 +10,7 @@ MAN= ln.1 symlink.7
|
|||||||
LINKS= ${BINDIR}/ln ${BINDIR}/link
|
LINKS= ${BINDIR}/ln ${BINDIR}/link
|
||||||
MLINKS= ln.1 link.1
|
MLINKS= ln.1 link.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -14,6 +14,7 @@ CFLAGS+= -DCOLORLS
|
|||||||
LIBADD+= termcapw
|
LIBADD+= termcapw
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PACKAGE=runtime
|
PACKAGE=runtime
|
||||||
PROG= mv
|
PROG= mv
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -33,6 +33,7 @@ SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c \
|
|||||||
gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c \
|
gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c \
|
||||||
tables.c tar.c tty_subs.c
|
tables.c tar.c tty_subs.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -19,6 +19,7 @@ MLINKS= pkill.1 pgrep.1
|
|||||||
SYMLINKS= ../..${BINDIR}/pkill /usr/bin/pkill
|
SYMLINKS= ../..${BINDIR}/pkill /usr/bin/pkill
|
||||||
SYMLINKS+= ../..${BINDIR}/pgrep /usr/bin/pgrep
|
SYMLINKS+= ../..${BINDIR}/pgrep /usr/bin/pgrep
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
PACKAGE=runtime
|
PACKAGE=runtime
|
||||||
PROG= pwait
|
PROG= pwait
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -64,6 +64,7 @@ syntax.c syntax.h: mksyntax
|
|||||||
token.h: mktokens
|
token.h: mktokens
|
||||||
sh ${.CURDIR}/mktokens
|
sh ${.CURDIR}/mktokens
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PACKAGE=runtime
|
PACKAGE=runtime
|
||||||
PROG= sleep
|
PROG= sleep
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ PROG= test
|
|||||||
LINKS= ${BINDIR}/test ${BINDIR}/[
|
LINKS= ${BINDIR}/test ${BINDIR}/[
|
||||||
MLINKS= test.1 [.1
|
MLINKS= test.1 [.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -72,6 +72,7 @@ INCSDIR_atf-c++.hpp= ${INCLUDEDIR}
|
|||||||
MAN= atf-c++.3
|
MAN= atf-c++.3
|
||||||
MLINKS+= atf-c++.3 atf-c-api++.3 # Backwards compatibility.
|
MLINKS+= atf-c++.3 atf-c-api++.3 # Backwards compatibility.
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include "../common.mk"
|
.include "../common.mk"
|
||||||
|
@ -97,6 +97,7 @@ INCSDIR_atf-c.h= ${INCLUDEDIR}
|
|||||||
MAN= atf-c.3
|
MAN= atf-c.3
|
||||||
MLINKS+= atf-c.3 atf-c-api.3 # Backwards compatibility.
|
MLINKS+= atf-c.3 atf-c-api.3 # Backwards compatibility.
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include "../common.mk"
|
.include "../common.mk"
|
||||||
|
@ -413,6 +413,7 @@ MLINKS+= archive_write_set_options.3 archive_write_set_format_option.3
|
|||||||
MLINKS+= archive_write_set_options.3 archive_write_set_option.3
|
MLINKS+= archive_write_set_options.3 archive_write_set_option.3
|
||||||
MLINKS+= libarchive.3 archive.3
|
MLINKS+= libarchive.3 archive.3
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -173,6 +173,7 @@ libkern.${LIBC_ARCH}:: ${KMSRCS}
|
|||||||
${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH}
|
${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -47,6 +47,7 @@ SHLIB_MAJOR= 7
|
|||||||
|
|
||||||
.include <src.opts.mk>
|
.include <src.opts.mk>
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -18,6 +18,7 @@ LIBADD= nv
|
|||||||
|
|
||||||
CFLAGS+=-I${.CURDIR}
|
CFLAGS+=-I${.CURDIR}
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -18,6 +18,7 @@ LIBADD= nv
|
|||||||
|
|
||||||
CFLAGS+=-I${.CURDIR}
|
CFLAGS+=-I${.CURDIR}
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -18,6 +18,7 @@ LIBADD= nv
|
|||||||
|
|
||||||
CFLAGS+=-I${.CURDIR}
|
CFLAGS+=-I${.CURDIR}
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -18,6 +18,7 @@ LIBADD= nv
|
|||||||
|
|
||||||
CFLAGS+=-I${.CURDIR}
|
CFLAGS+=-I${.CURDIR}
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -43,6 +43,7 @@ WARNS?= 2
|
|||||||
|
|
||||||
PRECIOUSLIB=
|
PRECIOUSLIB=
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -38,6 +38,7 @@ MLINKS+=kvm_read.3 kvm_read2.3 kvm_read.3 kvm_write.3
|
|||||||
|
|
||||||
.include <src.opts.mk>
|
.include <src.opts.mk>
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}= tests
|
SUBDIR.${MK_TESTS}= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -15,6 +15,7 @@ CFLAGS+= -I${SRCTOP}/crypto
|
|||||||
VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
|
VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
|
||||||
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -17,6 +17,7 @@ SRCS+= msgio.c
|
|||||||
SRCS+= nvlist.c
|
SRCS+= nvlist.c
|
||||||
SRCS+= nvpair.c
|
SRCS+= nvpair.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -13,6 +13,7 @@ SRCS= abs2rel.c rel2abs.c
|
|||||||
#VERSION_DEF= ${SRCTOP/lib/libc/Versions.def
|
#VERSION_DEF= ${SRCTOP/lib/libc/Versions.def
|
||||||
#SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
#SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -41,6 +41,7 @@ SHLIB_MAJOR= 4
|
|||||||
|
|
||||||
MAN=
|
MAN=
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -21,6 +21,7 @@ PRECIOUSLIB=
|
|||||||
VERSION_DEF=${SRCTOP}/lib/libc/Versions.def
|
VERSION_DEF=${SRCTOP}/lib/libc/Versions.def
|
||||||
SYMBOL_MAPS=${.CURDIR}/Symbol.map
|
SYMBOL_MAPS=${.CURDIR}/Symbol.map
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -14,6 +14,7 @@ VERSION_DEF= ${.CURDIR}/Version.def
|
|||||||
|
|
||||||
.PATH: ${SRCTOP}/sys/kern
|
.PATH: ${SRCTOP}/sys/kern
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -69,6 +69,7 @@ SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so
|
|||||||
SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
|
SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -85,6 +85,7 @@ MLINKS+=pw_util.3 pw_copy.3 \
|
|||||||
pw_util.3 pw_tempname.3 \
|
pw_util.3 pw_tempname.3 \
|
||||||
pw_util.3 pw_tmp.3
|
pw_util.3 pw_tmp.3
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -110,6 +110,7 @@ MLINKS= xo_attr.3 xo_attr_h.3 \
|
|||||||
xo_syslog.3 xo_set_logmask.3 \
|
xo_syslog.3 xo_set_logmask.3 \
|
||||||
xo_syslog.3 xo_vsyslog.3
|
xo_syslog.3 xo_vsyslog.3
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -228,6 +228,7 @@ MLINKS+=trunc.3 truncf.3 trunc.3 truncl.3
|
|||||||
|
|
||||||
.include <src.opts.mk>
|
.include <src.opts.mk>
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
.include <bsd.lib.mk>
|
||||||
|
@ -40,6 +40,7 @@ CFLAGS+= -DATF_SHELL='"/bin/sh"'
|
|||||||
|
|
||||||
LIBADD= atf_cxx
|
LIBADD= atf_cxx
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -72,6 +72,7 @@ FILESGROUPS= SUBR
|
|||||||
SUBRDIR= ${SHAREDIR}/atf
|
SUBRDIR= ${SHAREDIR}/atf
|
||||||
SUBR= libatf-sh.subr
|
SUBR= libatf-sh.subr
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include "../../../lib/atf/common.mk"
|
.include "../../../lib/atf/common.mk"
|
||||||
|
@ -85,6 +85,7 @@ beforeinstall:
|
|||||||
|
|
||||||
.PATH: ${.CURDIR}/${RTLD_ARCH}
|
.PATH: ${.CURDIR}/${RTLD_ARCH}
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -18,6 +18,7 @@ CFLAGS+=-I. -I${.CURDIR}
|
|||||||
|
|
||||||
CLEANFILES= y.output
|
CLEANFILES= y.output
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -46,6 +46,7 @@ LIBADD= util
|
|||||||
|
|
||||||
WARNS?= 2
|
WARNS?= 2
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -22,6 +22,7 @@ NO_WCAST_ALIGN= yes
|
|||||||
|
|
||||||
LIBADD= util
|
LIBADD= util
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -67,6 +67,7 @@ MAN= ifconfig.8
|
|||||||
CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
|
CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
|
||||||
WARNS?= 2
|
WARNS?= 2
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ MAN= mdconfig.8
|
|||||||
|
|
||||||
LIBADD= util geom
|
LIBADD= util geom
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -31,6 +31,7 @@ YFLAGS=
|
|||||||
|
|
||||||
LIBADD= m md
|
LIBADD= m md
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -266,6 +266,7 @@ SUBDIR+=pf
|
|||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
SUBDIR_PARALLEL=
|
SUBDIR_PARALLEL=
|
||||||
|
@ -131,6 +131,7 @@ afterinstall:
|
|||||||
echo "Run tzsetup(8) manually to update /etc/localtime."; \
|
echo "Run tzsetup(8) manually to update /etc/localtime."; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -17,4 +17,5 @@ afterinstall: install-tests-local
|
|||||||
install-tests-local: .PHONY
|
install-tests-local: .PHONY
|
||||||
${INSTALL_SYMLINK} ../local/tests ${DESTDIR}${TESTSDIR}/local
|
${INSTALL_SYMLINK} ../local/tests ${DESTDIR}${TESTSDIR}/local
|
||||||
|
|
||||||
|
.include "Makefile.inc0"
|
||||||
.include <bsd.test.mk>
|
.include <bsd.test.mk>
|
||||||
|
8
tests/Makefile.inc0
Normal file
8
tests/Makefile.inc0
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
# tests/... doesn't conform to bsd.lib.mk and bsd.prog.mk, so specify a sane
|
||||||
|
# default for MK_CHECK_USE_SANDBOX. src.opts.mk will override the value if the
|
||||||
|
# user sets it to no.
|
||||||
|
MK_CHECK_USE_SANDBOX= yes
|
||||||
|
|
||||||
|
.include <bsd.opts.mk>
|
3
tests/etc/Makefile.inc
Normal file
3
tests/etc/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
.include "${SRCTOP}/tests/Makefile.inc0"
|
@ -1,3 +1,5 @@
|
|||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
WARNS?= 6
|
WARNS?= 6
|
||||||
|
|
||||||
|
.include "${SRCTOP}/tests/Makefile.inc0"
|
||||||
|
3
tests/sys/geom/class/Makefile.inc
Normal file
3
tests/sys/geom/class/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
.include "${SRCTOP}/tests/Makefile.inc0"
|
3
tests/sys/pjdfstest/Makefile.inc
Normal file
3
tests/sys/pjdfstest/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
.include "${SRCTOP}/tests/Makefile.inc0"
|
3
tests/sys/pjdfstest/tests/Makefile.inc
Normal file
3
tests/sys/pjdfstest/tests/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
.include "../Makefile.inc"
|
@ -7,6 +7,7 @@ PROG= apply
|
|||||||
|
|
||||||
LIBADD= sbuf
|
LIBADD= sbuf
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= basename
|
PROG= basename
|
||||||
MLINKS= basename.1 dirname.1
|
MLINKS= basename.1 dirname.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -24,6 +24,7 @@ LIBADD= archive
|
|||||||
CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const
|
CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -33,6 +33,7 @@ beforeinstall:
|
|||||||
${DESTDIR}${SHAREDIR}/calendar/${link}
|
${DESTDIR}${SHAREDIR}/calendar/${link}
|
||||||
.endfor
|
.endfor
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= cmp
|
PROG= cmp
|
||||||
SRCS= cmp.c link.c misc.c regular.c special.c
|
SRCS= cmp.c link.c misc.c regular.c special.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= col
|
PROG= col
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= comm
|
PROG= comm
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -11,6 +11,7 @@ MLINKS= compress.1 uncompress.1
|
|||||||
# XXX zopen is not part of libc
|
# XXX zopen is not part of libc
|
||||||
# MAN=zopen.3
|
# MAN=zopen.3
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -32,6 +32,7 @@ CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const
|
|||||||
SYMLINKS=bsdcpio ${BINDIR}/cpio
|
SYMLINKS=bsdcpio ${BINDIR}/cpio
|
||||||
MLINKS= bsdcpio.1 cpio.1
|
MLINKS= bsdcpio.1 cpio.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
PROG= csplit
|
PROG= csplit
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= cut
|
PROG= cut
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
PROG= diff
|
PROG= diff
|
||||||
SRCS= diff.c diffdir.c diffreg.c xmalloc.c
|
SRCS= diff.c diffdir.c diffreg.c xmalloc.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
PROG= diff3
|
PROG= diff3
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= dirname
|
PROG= dirname
|
||||||
MAN=
|
MAN=
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= du
|
PROG= du
|
||||||
LIBADD= util
|
LIBADD= util
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
PROG= file2c
|
PROG= file2c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -37,6 +37,7 @@ conflicting.names: confstr.names limits.names sysconf.names
|
|||||||
unique.names: conflicting.names
|
unique.names: conflicting.names
|
||||||
LC_ALL=C sort -u ${.ALLSRC} >${.TARGET}
|
LC_ALL=C sort -u ${.ALLSRC} >${.TARGET}
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -92,6 +92,7 @@ LIBADD+= gnuregex
|
|||||||
CFLAGS+= -DWITHOUT_NLS
|
CFLAGS+= -DWITHOUT_NLS
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -27,6 +27,7 @@ LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip \
|
|||||||
${BINDIR}/gzip ${BINDIR}/zcat \
|
${BINDIR}/gzip ${BINDIR}/zcat \
|
||||||
${BINDIR}/zdiff ${BINDIR}/zcmp
|
${BINDIR}/zdiff ${BINDIR}/zcmp
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -10,6 +10,7 @@ MLINKS= hexdump.1 hd.1
|
|||||||
LINKS= ${BINDIR}/hexdump ${BINDIR}/od
|
LINKS= ${BINDIR}/hexdump ${BINDIR}/od
|
||||||
LINKS+= ${BINDIR}/hexdump ${BINDIR}/hd
|
LINKS+= ${BINDIR}/hexdump ${BINDIR}/hd
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@ PROG= ident
|
|||||||
|
|
||||||
LIBADD= sbuf
|
LIBADD= sbuf
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ SRCS= indent.c io.c lexi.c parse.c pr_comment.c args.c
|
|||||||
|
|
||||||
NO_WMISSING_VARIABLE_DECLARATIONS=
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= join
|
PROG= join
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= jot
|
PROG= jot
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ PACKAGE=acct
|
|||||||
PROG= lastcomm
|
PROG= lastcomm
|
||||||
SRCS= lastcomm.c readrec.c
|
SRCS= lastcomm.c readrec.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
PROG= limits
|
PROG= limits
|
||||||
LIBADD= util
|
LIBADD= util
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -20,6 +20,7 @@ tokenizer.o: parser.h
|
|||||||
|
|
||||||
CLEANFILES+= parser.c parser.h tokenizer.o
|
CLEANFILES+= parser.c parser.h tokenizer.o
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -35,6 +35,7 @@ LIBADD= util
|
|||||||
|
|
||||||
WARNS?= 6
|
WARNS?= 6
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -9,6 +9,7 @@ LIBADD= calendar ncursesw
|
|||||||
LINKS= ${BINDIR}/ncal ${BINDIR}/cal
|
LINKS= ${BINDIR}/ncal ${BINDIR}/cal
|
||||||
MLINKS= ncal.1 cal.1
|
MLINKS= ncal.1 cal.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= pr
|
PROG= pr
|
||||||
SRCS= pr.c egetopt.c
|
SRCS= pr.c egetopt.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= printf
|
PROG= printf
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -22,6 +22,7 @@ SRCS= procstat.c \
|
|||||||
|
|
||||||
LIBADD+= procstat xo util sbuf
|
LIBADD+= procstat xo util sbuf
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ WARNS= 3
|
|||||||
|
|
||||||
MAN1= sdiff.1
|
MAN1= sdiff.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ SRCS= compile.c main.c misc.c process.c
|
|||||||
|
|
||||||
WARNS?= 2
|
WARNS?= 2
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
PROG= soelim
|
PROG= soelim
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -7,6 +7,7 @@ PROG= stat
|
|||||||
LINKS= ${BINDIR}/stat ${BINDIR}/readlink
|
LINKS= ${BINDIR}/stat ${BINDIR}/readlink
|
||||||
MLINKS= stat.1 readlink.1
|
MLINKS= stat.1 readlink.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= tail
|
PROG= tail
|
||||||
SRCS= forward.c misc.c read.c reverse.c tail.c
|
SRCS= forward.c misc.c read.c reverse.c tail.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -33,6 +33,7 @@ CFLAGS+= -I${_LIBARCHIVEDIR}/libarchive_fe
|
|||||||
SYMLINKS= bsdtar ${BINDIR}/tar
|
SYMLINKS= bsdtar ${BINDIR}/tar
|
||||||
MLINKS= bsdtar.1 tar.1
|
MLINKS= bsdtar.1 tar.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
PROG= timeout
|
PROG= timeout
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= tr
|
PROG= tr
|
||||||
SRCS= cmap.c cset.c str.c tr.c
|
SRCS= cmap.c cset.c str.c tr.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
PROG= truncate
|
PROG= truncate
|
||||||
LIBADD= util
|
LIBADD= util
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
PROG= uniq
|
PROG= uniq
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -8,6 +8,7 @@ FILESDIR= ${SHAREDIR}/misc
|
|||||||
|
|
||||||
LIBADD= edit
|
LIBADD= edit
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -7,6 +7,7 @@ PROG= uudecode
|
|||||||
LINKS= ${BINDIR}/uudecode ${BINDIR}/b64decode
|
LINKS= ${BINDIR}/uudecode ${BINDIR}/b64decode
|
||||||
MAN=
|
MAN=
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -11,6 +11,7 @@ MLINKS= uuencode.1 uudecode.1 \
|
|||||||
uuencode.1 b64encode.1 \
|
uuencode.1 b64encode.1 \
|
||||||
b64encode.1 b64decode.1
|
b64encode.1 b64decode.1
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
PROG= xargs
|
PROG= xargs
|
||||||
SRCS= xargs.c strnsubst.c
|
SRCS= xargs.c strnsubst.c
|
||||||
|
|
||||||
|
HAS_TESTS=
|
||||||
SUBDIR.${MK_TESTS}+= tests
|
SUBDIR.${MK_TESTS}+= tests
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user