summaryrefslogtreecommitdiffstats
path: root/src/lib/exceptions
diff options
context:
space:
mode:
authorJeremy C. Reed <jreed@ISC.org>2011-10-11 04:59:40 +0200
committerJeremy C. Reed <jreed@ISC.org>2011-10-11 04:59:40 +0200
commitb126cf8dbf225ff5b12c9a7b6a241d80babf8a42 (patch)
treead589391fb86968e5ed5b58f08bd0819360687af /src/lib/exceptions
parentMerge branch 'master' of ssh://git.bind10.isc.org//var/bind10/git/bind10 (diff)
downloadkea-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.am2
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)