mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-17 16:26:59 +00:00
For reasons see excellent paper 'Recursive Make Considered Harmful' by Peter Miller. References: http://miller.emu.id.au/pmiller/books/rmch/ Signed-off-by: Sami Kerola <kerolasa@iki.fi>
26 lines
484 B
Text
26 lines
484 B
Text
TESTS = \
|
|
tests/bootp \
|
|
tests/complete \
|
|
tests/empty \
|
|
tests/full-json \
|
|
tests/leading0 \
|
|
tests/one-ip \
|
|
tests/same-twice \
|
|
tests/simple \
|
|
tests/v6
|
|
|
|
EXTRA_DIST += \
|
|
tests/confs \
|
|
tests/expected \
|
|
tests/leases \
|
|
tests/test.sh \
|
|
$(TESTS)
|
|
|
|
TESTS_ENVIRONMENT = top_srcdir=$(top_srcdir) PATH=$(top_builddir)$(PATH_SEPARATOR)$$PATH
|
|
|
|
check-local: $(SHELL) $(top_srcdir)/tests/test.sh
|
|
|
|
clean-local-tests:
|
|
rm -rf $(top_builddir)/tests/outputs
|
|
|
|
CLEAN_LOCALS += clean-local-tests
|