blob: acfe56fbebeaadd939e6b3ff0836ef0ca91374c6 (
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
26
27
28
29
30
31
32
33
|
UNIT_TESTS = \
unit-test-ntlmssp.c \
unit-test-stringx.c
INCLUDES= \
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_srcdir)/common
noinst_PROGRAMS= \
run-tests
run-tests.c: $(UNIT_TESTS) prep-tests.sh Makefile.am
sh prep-tests.sh -b run-tests $(UNIT_TESTS)
run_tests_SOURCES = \
run-tests.c \
run-tests.h \
$(UNIT_TESTS)
EXTRA_DIST = \
prep-tests.sh \
cu-test \
test-helpers.c \
test-helpers.h
# ------------------------------------------------------------------------------
# Run the tests
run: $(noinst_PROGRAMS)
./run-tests
|