blob: 00451248744a930adfa7ebc94a6c3dec934b7ce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
check_PROGRAMS = \
%reldir%/mode
tests_mode_SOURCES = \
common/defs.h \
common/mode.c \
common/mode.h \
%reldir%/mode.c
tests_mode_CPPFLAGS = \
-I"$(top_srcdir)/common"
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
|