bind9/lib/isccc/tests/Makefile.am
Michal Nowak bfa6ecb796
Provide unit test driver
This adds a unit test driver for BIND with Automake.  It runs the unit
test program provided as its sole command line argument and then looks
for a core dump generated by that test program.  If one is found, the
driver prints the backtrace into the test log.
2020-05-21 12:13:01 +02:00

19 lines
316 B
Makefile

include $(top_srcdir)/Makefile.top
include $(top_srcdir)/Makefile.tests
AM_CPPFLAGS += \
$(LIBISC_CFLAGS) \
$(LIBISCCC_CFLAGS)
LDADD += \
$(LIBISC_LIBS) \
$(LIBISCCC_LIBS)
check_PROGRAMS = \
result_test
TESTS = $(check_PROGRAMS)
unit-local: check
LOG_COMPILER = $(builddir)/../../unit-test-driver.sh