blob: 9124d948b82f83b3e607936754c727191fc39d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
tests = \
%reldir%/formats.sh \
%reldir%/parse.sh
if ENABLE_TESTS
TESTS = $(tests)
else
TESTS = %reldir%/disabled.sh
endif
TEST_EXTENSIONS = .sh
SH_LOG_DRIVER = \
AM_TAP_AWK='$(AWK)' \
TOP_SRCDIR="$(abs_top_srcdir)" \
TOP_BUILDDIR="$(abs_top_builddir)" \
$(SHELL) $(top_srcdir)/build-aux/tap-driver.sh
EXTRA_DIST += \
$(tests) \
%reldir%/disabled.sh \
$(top_srcdir)/build-aux/tap-driver.sh \
%reldir%/aux/tap-functions.sh
|