[l10n]Updated Turkish translation
[platform/upstream/glib.git] / tests / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 SUBDIRS=gobject refcount
4
5 AM_CPPFLAGS =                           \
6         $(gmodule_INCLUDES)             \
7         $(GLIB_DEBUG_FLAGS)
8
9 AM_CFLAGS = -g
10
11 EFENCE=
12
13 libglib = $(top_builddir)/glib/libglib-2.0.la
14 libgthread = $(top_builddir)/gthread/libgthread-2.0.la
15 libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
16 libgobject = $(top_builddir)/gobject/libgobject-2.0.la
17
18 libadd_libgmodule = $(libgmodule)
19 libadd_libglib = $(libglib)
20 if PLATFORM_WIN32
21 no_undefined = -no-undefined
22
23 module_test_exp = module-test.exp
24
25 module-test.exp: module-test.o
26         dlltool --output-exp module-test.exp module-test.o
27
28 spawn_test_win32_gui = spawn-test-win32-gui
29
30 spawn_test_win32_gui_LDFLAGS = -mwindows
31
32 endif
33
34 EXTRA_DIST +=                                   \
35         $(test_scripts)                         \
36         makefile.msc.in                         \
37         casefold.txt                            \
38         casemap.txt                             \
39         gen-casefold-txt.pl                     \
40         gen-casemap-txt.pl                      \
41         iochannel-test-infile                   \
42         utf8.txt                                \
43         timeloop-basic.c                
44
45 BUILT_EXTRA_DIST =                              \
46         makefile.msc
47
48 if HAVE_CXX
49 CXX_TEST = cxx-test
50 cxx_test_LDADD = $(progs_ldadd)
51 cxx_test_SOURCES = cxx-test.C
52 else
53 CXX_TEST =
54 endif
55
56 if ENABLE_TIMELOOP
57 timeloop = timeloop timeloop-closure
58 endif
59 noinst_PROGRAMS = $(TEST_PROGS) \
60         testgdate               \
61         testgdateparser         \
62         unicode-normalize       \
63         unicode-collate         \
64         $(timeloop)             \
65         errorcheck-mutex-test   \
66         assert-msg-test
67
68 TEST_PROGS              += testglib
69 testglib_SOURCES         = testglib.c
70 testglib_LDADD           = $(libglib)
71
72
73 testgdate_LDADD = $(libglib)
74 testgdateparser_LDADD = $(libglib)
75 unicode_normalize_LDADD = $(libglib)
76 unicode_collate_LDADD = $(libglib)
77 errorcheck_mutex_test_LDADD = $(libglib) $(libgthread) $(G_THREAD_LIBS) 
78 assert_msg_test_LDADD = $(libglib)
79 if ENABLE_TIMELOOP
80 timeloop_LDADD = $(libglib)
81 timeloop_closure_LDADD = $(libglib) $(libgobject)
82 endif
83
84 test_programs =                                 \
85         atomic-test                             \
86         bit-test                                \
87         $(CXX_TEST)                             \
88         child-test                              \
89         completion-test                         \
90         dirname-test                            \
91         file-test                               \
92         env-test                                \
93         gio-test                                \
94         iochannel-test                          \
95         mainloop-test                           \
96         mapping-test                            \
97         module-test                             \
98         onceinit                                \
99         asyncqueue-test                         \
100         qsort-test                              \
101         relation-test                           \
102         slice-test                              \
103         slice-color                             \
104         slice-concurrent                        \
105         slice-threadinit                        \
106         spawn-test                              \
107         $(spawn_test_win32_gui)                 \
108         thread-test                             \
109         threadpool-test                         \
110         type-test                               \
111         unicode-caseconv                        \
112         unicode-encoding
113
114 test_scripts = run-collate-tests.sh run-assert-msg-test.sh
115
116 test_script_support_programs = unicode-collate
117
118 check_PROGRAMS = $(test_programs) $(test_script_support_programs)
119
120 TESTS = $(test_programs) $(test_scripts)
121 TESTS_ENVIRONMENT = srcdir=$(srcdir) \
122         LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset \
123         MALLOC_CHECK_=2 \
124         MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
125
126 progs_ldadd = $(EFENCE) $(libglib) $(EFENCE)
127 thread_ldadd = $(libgthread) $(G_THREAD_LIBS) $(progs_ldadd)
128 module_ldadd = $(libgmodule) $(G_MODULE_LIBS) $(progs_ldadd)
129
130 atomic_test_LDADD = $(progs_ldadd)
131 bit_test_LDADD = $(progs_ldadd)
132 child_test_LDADD = $(thread_ldadd)
133 completion_test_LDADD = $(progs_ldadd)
134 dirname_test_LDADD = $(progs_ldadd)
135 file_test_LDADD = $(progs_ldadd)
136 env_test_LDADD = $(progs_ldadd)
137 gio_test_LDADD = $(progs_ldadd)
138 iochannel_test_LDADD = $(progs_ldadd)
139 mainloop_test_LDADD = $(thread_ldadd)
140 mapping_test_LDADD = $(progs_ldadd)
141 module_test_LDADD = $(module_ldadd) $(module_test_exp)
142 module_test_LDFLAGS = $(G_MODULE_LDFLAGS)
143 onceinit_LDADD = $(thread_ldadd)
144 asyncqueue_test_LDADD = $(thread_ldadd)
145 qsort_test_LDADD = $(progs_ldadd)
146 relation_test_LDADD = $(progs_ldadd)
147 slice_test_SOURCES = slice-test.c memchunks.c
148 slice_test_LDADD = $(thread_ldadd)
149 slice_color_SOURCES = slice-color.c memchunks.c
150 slice_color_LDADD = $(thread_ldadd)
151 slice_concurrent_SOURCES = slice-concurrent.c
152 slice_concurrent_LDADD = $(thread_ldadd)
153 slice_threadinit_SOURCES = slice-threadinit.c
154 slice_threadinit_LDADD = $(thread_ldadd)
155 spawn_test_LDADD = $(progs_ldadd)
156 thread_test_LDADD = $(thread_ldadd)
157 threadpool_test_LDADD = $(thread_ldadd)
158 type_test_LDADD = $(progs_ldadd)
159 unicode_encoding_LDADD = $(progs_ldadd)
160 unicode_caseconv_LDADD = $(progs_ldadd)
161
162 noinst_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
163
164 libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
165 libmoduletestplugin_a_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
166 libmoduletestplugin_a_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
167
168 libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
169 libmoduletestplugin_b_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
170 libmoduletestplugin_b_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
171
172 dist-hook: $(BUILT_EXTRA_DIST)
173         files='$(BUILT_EXTRA_DIST)';                            \
174         for f in $$files; do                                    \
175           if test -f $$f; then d=.; else d=$(srcdir); fi;       \
176           cp $$d/$$f $(distdir) || exit 1; done
177         mkdir $(distdir)/collate;                               \
178         for f in $(srcdir)/collate/* ; do                       \
179           if test -f $$f; then cp $$f $(distdir)/collate; fi; done
180
181 DISTCLEANFILES =                \
182         iochannel-test-outfile  \
183         file-test-get-contents  \
184         maptest                 \
185         mapchild                \
186         collate.out