Imported Upstream version 0.2.11
[platform/upstream/libdatrie.git] / tests / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)
2
3 TESTS_ENVIRONMENT = top_builddir=$(top_builddir)
4
5 TESTS = \
6         test_walk \
7         test_iterator \
8         test_store-retrieve \
9         test_file \
10         test_nonalpha \
11         test_null_trie \
12         test_term_state \
13         test_byte_alpha \
14         $(NULL)
15
16 check_PROGRAMS = \
17         test_walk \
18         test_iterator \
19         test_store-retrieve \
20         test_file \
21         test_nonalpha \
22         test_null_trie \
23         test_term_state \
24         test_byte_alpha \
25         $(NULL)
26
27 noinst_HEADERS = \
28         utils.h \
29         $(NULL)
30
31 test_walk_SOURCES = \
32         test_walk.c \
33         utils.c \
34         $(NULL)
35 test_walk_LDADD = $(top_builddir)/datrie/libdatrie.la
36
37 test_iterator_SOURCES = \
38         test_iterator.c \
39         utils.c \
40         $(NULL)
41 test_iterator_LDADD = $(top_builddir)/datrie/libdatrie.la
42
43 test_store_retrieve_SOURCES = \
44         test_store-retrieve.c \
45         utils.c \
46         $(NULL)
47 test_store_retrieve_LDADD = $(top_builddir)/datrie/libdatrie.la
48
49 test_file_SOURCES = \
50         test_file.c \
51         utils.c \
52         $(NULL)
53 test_file_LDADD = $(top_builddir)/datrie/libdatrie.la
54
55 test_nonalpha_SOURCES = \
56         test_nonalpha.c \
57         utils.c \
58         $(NULL)
59 test_nonalpha_LDADD = $(top_builddir)/datrie/libdatrie.la
60
61 test_null_trie_SOURCES = \
62         test_null_trie.c \
63         utils.c \
64         $(NULL)
65 test_null_trie_LDADD = $(top_builddir)/datrie/libdatrie.la
66
67 test_term_state_SOURCES = \
68         test_term_state.c \
69         utils.c \
70         $(NULL)
71 test_term_state_LDADD = $(top_builddir)/datrie/libdatrie.la
72
73 test_byte_alpha_SOURCES = \
74         test_byte_alpha.c \
75         utils.c \
76         $(NULL)
77 test_byte_alpha_LDADD = $(top_builddir)/datrie/libdatrie.la
78