a92b124dc9
- TESTSDIR doesn't need to be specified after r289158. - Including bsd.own.mk isn't required since no MK_<foo> knobs are being manipulated. - TESTS_SUBDIRS should be written out in an append format, one entry per line, to provide a better, more conflict resistant example. MFC after: 1 month
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
# Directory into which the Kyuafile provided by this directory will be
|
|
# installed.
|
|
#
|
|
# This is always a subdirectory of ${TESTSBASE}/. The remainder of the
|
|
# path has to match the relative path within the source tree in which
|
|
# these files are found modulo the tests/ component at the end.
|
|
#
|
|
# For example: if this Makefile were in src/bin/cp/tests/, its TESTSDIR
|
|
# would point at ${TESTSBASE}/bin/cp/.
|
|
#
|
|
# The default path specified by bsd.test.mk is `${TESTSBASE}/${RELDIR:H}`,
|
|
# which happens to be the same as `${TESTSBASE}/share/examples/tests`.
|
|
#TESTSDIR= ${TESTSBASE}/share/examples/tests
|
|
|
|
# List of subdirectories into which we want to recurse during the build
|
|
# of the system. We use TESTS_SUBDIRS instead of SUBDIR because we want
|
|
# the auto-generated Kyuafile to recurse into these directories.
|
|
TESTS_SUBDIRS+= atf
|
|
TESTS_SUBDIRS+= plain
|
|
|
|
# We leave KYUAFILE unset so that bsd.test.mk auto-generates a Kyuafile
|
|
# for us based on the contents of the TESTS_SUBDIRS line above. The
|
|
# generated file will tell the tests run-time engine to recurse into the
|
|
# directories listed above.
|
|
#KYUAFILE= auto
|
|
|
|
.include <bsd.test.mk>
|