blob: e61da9ca53f1683f1600fa56be7bca34987619b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
check_PROGRAMS = \
%reldir%/mode
tests_mode_SOURCES = \
helpers/defs.h \
helpers/mode.c \
helpers/mode.h \
%reldir%/mode.c
TESTS = \
%reldir%/version.sh \
%reldir%/mode.sh \
%reldir%/build.sh
TEST_EXTENSIONS = .sh
SH_LOG_DRIVER = \
AM_TAP_AWK='$(AWK)' \
TOP_SRCDIR="$(abs_top_srcdir)" \
TOP_BUILDDIR="$(abs_top_builddir)" \
EXEEXT="$(EXEEXT)" \
$(SHELL) $(top_srcdir)/build-aux/tap-driver.sh
EXTRA_DIST += \
$(TESTS) \
build-aux/tap-driver.sh \
tests/aux/tap-functions.sh \
tests/aux/common.sh
|