Makefile revision 321646
1# $FreeBSD: stable/10/share/examples/tests/tests/Makefile 321646 2017-07-28 03:30:46Z ngie $
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
20TESTS_SUBDIRS+=	tap
21
22# We leave KYUAFILE unset so that bsd.test.mk auto-generates a Kyuafile
23# for us based on the contents of the TESTS_SUBDIRS line above.  The
24# generated file will tell the tests run-time engine to recurse into the
25# directories listed above.
26#KYUAFILE=	auto
27
28.include <bsd.test.mk>
29