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