1# $FreeBSD$
2
3.include <bsd.own.mk>
4
5# Directory into which the Kyuafile provided by this directory will be
6# installed.
7#
8# This is always a subdirectory of ${TESTSBASE}/.  The remainder of the
9# path has to match the relative path within the source tree in which
10# these files are found modulo the tests/ component at the end.
11#
12# For example: if this Makefile were in src/bin/cp/tests/, its TESTSDIR
13# would point at ${TESTSBASE}/bin/cp/.
14TESTSDIR=	${TESTSBASE}/share/examples/tests
15
16# List of subdirectories into which we want to recurse during the build
17# of the system.  We use TESTS_SUBDIRS instead of SUBDIR because we want
18# the auto-generated Kyuafile to recurse into these directories.
19TESTS_SUBDIRS=	atf plain
20
21# We leave KYUAFILE unset so that bsd.test.mk auto-generates a Kyuafile
22# for us based on the contents of the TESTS_SUBDIRS line above.  The
23# generated file will tell the tests run-time engine to recurse into the
24# directories listed above.
25#KYUAFILE=	auto
26
27.include <bsd.test.mk>
28