diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-28 15:29:11 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-28 15:29:11 +0000 |
commit | 5a0c3ee5bb391d74deaecfe623b154ff0c42e990 (patch) | |
tree | 6aeee334704477cde8438ff8c24ff9c7f1115633 /mk/build | |
parent | d4977345f5e392871a4d9c6a3ac7a9773d3ae451 (diff) | |
download | pkgsrc-5a0c3ee5bb391d74deaecfe623b154ff0c42e990.tar.gz |
More documentation for the purpose of this file and a tiny wording
improvement for TEST_DIRS.
Diffstat (limited to 'mk/build')
-rw-r--r-- | mk/build/test.mk | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mk/build/test.mk b/mk/build/test.mk index 1a5c14fc175..5f08535c4ce 100644 --- a/mk/build/test.mk +++ b/mk/build/test.mk @@ -1,13 +1,18 @@ -# $NetBSD: test.mk,v 1.10 2007/01/27 08:14:07 uebayasi Exp $ +# $NetBSD: test.mk,v 1.11 2007/01/28 15:29:11 rillig Exp $ +# +# After the "build" phase, many packages provide some sort of self-test +# that can be run on the not-yet installed package. To enable these +# tests, the package must define TEST_TARGET or override the do-test +# target. Additionally, the pkgsrc user must define PKGSRC_RUN_TEST. # # Package-settable variables: # # TEST_TARGET is the name of the ${MAKE} target, provided by the # package, which enables the tests to be executed # -# TEST_DIRS is the list of directories in which to perform the build -# process. If the directories are relative paths, then they -# are assumed to be relative to ${WRKSRC}. +# TEST_DIRS is the list of directories in which to run the tests. +# If the directories are relative paths, then they are +# assumed to be relative to ${WRKSRC}. # # TEST_ENV is the shell environment that is exported to the make # process. @@ -25,6 +30,8 @@ # See also: # mk/build/build.mk # +# Keywords: test check +# TEST_DIRS?= ${BUILD_DIRS} TEST_ENV+= ${MAKE_ENV} |