diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-08-02 08:50:42 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-08-02 08:50:42 +0000 |
commit | d511b20a693d77c1dc2491a62124471361eddd8e (patch) | |
tree | 0e48f6f74b51451185cd0d8b365c12092afdd206 /bin | |
parent | 46b37aa2c4068c1a237b0a7e61b8c2f953b3708c (diff) | |
download | src-d511b20a693d77c1dc2491a62124471361eddd8e.tar.gz src-d511b20a693d77c1dc2491a62124471361eddd8e.zip |
Add HAS_TESTS to all Makefiles that are currently using the
`SUBDIR.${MK_TESTS}+= tests` idiom.
This is a follow up to r321912.
Notes
Notes:
svn path=/projects/make-check-sandbox/; revision=321914
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cat/Makefile | 1 | ||||
-rw-r--r-- | bin/date/Makefile | 1 | ||||
-rw-r--r-- | bin/dd/Makefile | 1 | ||||
-rw-r--r-- | bin/echo/Makefile | 1 | ||||
-rw-r--r-- | bin/expr/Makefile | 1 | ||||
-rw-r--r-- | bin/ln/Makefile | 1 | ||||
-rw-r--r-- | bin/ls/Makefile | 1 | ||||
-rw-r--r-- | bin/mv/Makefile | 1 | ||||
-rw-r--r-- | bin/pax/Makefile | 1 | ||||
-rw-r--r-- | bin/pkill/Makefile | 1 | ||||
-rw-r--r-- | bin/sleep/Makefile | 1 | ||||
-rw-r--r-- | bin/test/Makefile | 1 |
12 files changed, 12 insertions, 0 deletions
diff --git a/bin/cat/Makefile b/bin/cat/Makefile index 328692b30cd8..8d0a6e20c349 100644 --- a/bin/cat/Makefile +++ b/bin/cat/Makefile @@ -6,6 +6,7 @@ PACKAGE=runtime PROG= cat +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/date/Makefile b/bin/date/Makefile index 5e17c5826155..5e2e3d261536 100644 --- a/bin/date/Makefile +++ b/bin/date/Makefile @@ -7,6 +7,7 @@ PACKAGE=runtime PROG= date SRCS= date.c netdate.c vary.c +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/dd/Makefile b/bin/dd/Makefile index d845951616ac..2a9ff1f788f7 100644 --- a/bin/dd/Makefile +++ b/bin/dd/Makefile @@ -38,6 +38,7 @@ test: ${PROG} gen @rm -f gen 1M_zeroes* obs_zeroes +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/echo/Makefile b/bin/echo/Makefile index 2f97ea6e97e1..bd4455395ac4 100644 --- a/bin/echo/Makefile +++ b/bin/echo/Makefile @@ -6,6 +6,7 @@ PACKAGE=runtime PROG= echo +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/expr/Makefile b/bin/expr/Makefile index 622f420c32e1..dd74272e97b2 100644 --- a/bin/expr/Makefile +++ b/bin/expr/Makefile @@ -12,6 +12,7 @@ CFLAGS+= -fwrapv NO_WMISSING_VARIABLE_DECLARATIONS= +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/ln/Makefile b/bin/ln/Makefile index 36afc57d8612..dfabafa09a5c 100644 --- a/bin/ln/Makefile +++ b/bin/ln/Makefile @@ -10,6 +10,7 @@ MAN= ln.1 symlink.7 LINKS= ${BINDIR}/ln ${BINDIR}/link MLINKS= ln.1 link.1 +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/ls/Makefile b/bin/ls/Makefile index 1653d21b0d3e..607c6ad061ed 100644 --- a/bin/ls/Makefile +++ b/bin/ls/Makefile @@ -14,6 +14,7 @@ CFLAGS+= -DCOLORLS LIBADD+= termcapw .endif +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/mv/Makefile b/bin/mv/Makefile index f51e96c498ed..e16243f06c3b 100644 --- a/bin/mv/Makefile +++ b/bin/mv/Makefile @@ -6,6 +6,7 @@ PACKAGE=runtime PROG= mv +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/pax/Makefile b/bin/pax/Makefile index 03ff95de3344..d0772ee49766 100644 --- a/bin/pax/Makefile +++ b/bin/pax/Makefile @@ -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 \ tables.c tar.c tty_subs.c +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/pkill/Makefile b/bin/pkill/Makefile index 59ad1561f13f..bd755b822b7e 100644 --- a/bin/pkill/Makefile +++ b/bin/pkill/Makefile @@ -19,6 +19,7 @@ MLINKS= pkill.1 pgrep.1 SYMLINKS= ../..${BINDIR}/pkill /usr/bin/pkill SYMLINKS+= ../..${BINDIR}/pgrep /usr/bin/pgrep +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/sleep/Makefile b/bin/sleep/Makefile index 20a609a44054..8521a918f9c5 100644 --- a/bin/sleep/Makefile +++ b/bin/sleep/Makefile @@ -6,6 +6,7 @@ PACKAGE=runtime PROG= sleep +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> diff --git a/bin/test/Makefile b/bin/test/Makefile index 001b811c00c9..59ea2be99539 100644 --- a/bin/test/Makefile +++ b/bin/test/Makefile @@ -8,6 +8,7 @@ PROG= test LINKS= ${BINDIR}/test ${BINDIR}/[ MLINKS= test.1 [.1 +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include <bsd.prog.mk> |