]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/examples/tests/tests/atf/Makefile
Import sqlite3 3.12.1
[FreeBSD/FreeBSD.git] / share / examples / tests / tests / atf / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PACKAGE=        tests
6 FILESGROUPS=    TESTS
7 TESTSPACKAGE=   ${PACKAGE}
8 TESTS+=         Kyuafile
9
10 # Directory into which the Kyuafile provided by this directory will be
11 # installed.
12 #
13 # This is always a subdirectory of ${TESTSBASE}/.  The remainder of the
14 # path has to match the relative path within the source tree in which
15 # these files are found modulo the tests/ component at the end.
16 #
17 # For example: if this Makefile were in src/bin/cp/tests/, its TESTSDIR
18 # would point at ${TESTSBASE}/bin/cp/.
19 TESTSDIR=       ${TESTSBASE}/share/examples/tests/atf
20
21 # List of test programs to build.  Note that we can build more than one
22 # test from a single directory, and this is expected.
23 ATF_TESTS_C=    printf_test
24 ATF_TESTS_SH=   cp_test
25
26 # Tell bsd.test.mk that we are providing a hand-crafted Kyuafile in this
27 # directory.  We do so because the file in this directory exists for
28 # documentation purposes.
29 #
30 # In general, however, you should NOT define KYUAFILE at all to allow
31 # bsd.test.mk auto-generate one for you based on the ATF_TESTS_*
32 # definitions from above.
33 KYUAFILE=       yes
34
35 .include <bsd.test.mk>