diff options
author | Jeremy C. Reed <jreed@ISC.org> | 2011-10-11 04:59:40 +0200 |
---|---|---|
committer | Jeremy C. Reed <jreed@ISC.org> | 2011-10-11 04:59:40 +0200 |
commit | b126cf8dbf225ff5b12c9a7b6a241d80babf8a42 (patch) | |
tree | ad589391fb86968e5ed5b58f08bd0819360687af /src/lib/exceptions | |
parent | Merge branch 'master' of ssh://git.bind10.isc.org//var/bind10/git/bind10 (diff) | |
download | kea-b126cf8dbf225ff5b12c9a7b6a241d80babf8a42.tar.xz kea-b126cf8dbf225ff5b12c9a7b6a241d80babf8a42.zip |
[trac1286] change check_PROGRAMS to noinst_PROGRAMS
And for check_LTLIBRARIES to noinst_LTLIBRARIES too.
This is so a regular "make" will build the test programs and
libraries too. So the "make check" will just run the tests (and
not build them). This is to help with test-driven development.
This reverses some from #1091, plus does the rest too.
Note that doing a "make check" before a "make" does not currently
work due to dependencies depending on each other (e.g. python/isc/log
tests needs datasrc but python/isc/datasrc tests need log_config_update).
Diffstat (limited to 'src/lib/exceptions')
-rw-r--r-- | src/lib/exceptions/tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/exceptions/tests/Makefile.am b/src/lib/exceptions/tests/Makefile.am index 35161a1fed..2444b025c6 100644 --- a/src/lib/exceptions/tests/Makefile.am +++ b/src/lib/exceptions/tests/Makefile.am @@ -20,4 +20,4 @@ run_unittests_LDADD = $(GTEST_LDADD) run_unittests_LDADD += $(top_builddir)/src/lib/exceptions/libexceptions.la endif -check_PROGRAMS = $(TESTS) +noinst_PROGRAMS = $(TESTS) |