drop errorcheck mutex test
[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         assert-msg-test         \
66         datetime
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 datetime_LDADD = $(libglib)
84
85 test_programs =                                 \
86         atomic-test                             \
87         bit-test                                \
88         $(CXX_TEST)                             \
89         child-test                              \
90         completion-test                         \
91         dirname-test                            \
92         file-test                               \
93         env-test                                \
94         gio-test                                \
95         iochannel-test                          \
96         mainloop-test                           \
97         mapping-test                            \
98         module-test                             \
99         onceinit                                \
100         asyncqueue-test                         \
101         qsort-test                              \
102         relation-test                           \
103         slice-test                              \
104         slice-color                             \
105         slice-concurrent                        \
106         slice-threadinit                        \
107         spawn-test                              \
108         $(spawn_test_win32_gui)                 \
109         thread-test                             \
110         threadpool-test                         \
111         type-test                               \
112         unicode-caseconv                        \
113         unicode-encoding
114
115 test_scripts = run-collate-tests.sh run-assert-msg-test.sh
116
117 test_script_support_programs = unicode-collate
118
119 check_PROGRAMS = $(test_programs) $(test_script_support_programs)
120
121 TESTS = $(test_programs) $(test_scripts)
122 TESTS_ENVIRONMENT = srcdir=$(srcdir) \
123         LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset \
124         MALLOC_CHECK_=2 \
125         MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
126
127 progs_ldadd = $(EFENCE) $(libglib) $(EFENCE)
128 thread_ldadd = $(libgthread) $(G_THREAD_LIBS) $(progs_ldadd)
129 module_ldadd = $(libgmodule) $(G_MODULE_LIBS) $(progs_ldadd)
130
131 atomic_test_LDADD = $(progs_ldadd)
132 bit_test_LDADD = $(progs_ldadd)
133 child_test_LDADD = $(thread_ldadd)
134 completion_test_LDADD = $(progs_ldadd)
135 dirname_test_LDADD = $(progs_ldadd)
136 file_test_LDADD = $(progs_ldadd)
137 env_test_LDADD = $(progs_ldadd)
138 gio_test_LDADD = $(progs_ldadd)
139 iochannel_test_LDADD = $(progs_ldadd)
140 mainloop_test_LDADD = $(thread_ldadd)
141 mapping_test_LDADD = $(progs_ldadd)
142 module_test_LDADD = $(module_ldadd) $(module_test_exp)
143 module_test_LDFLAGS = $(G_MODULE_LDFLAGS)
144 onceinit_LDADD = $(thread_ldadd)
145 asyncqueue_test_LDADD = $(thread_ldadd)
146 qsort_test_LDADD = $(progs_ldadd)
147 relation_test_LDADD = $(progs_ldadd)
148 slice_test_SOURCES = slice-test.c memchunks.c
149 slice_test_LDADD = $(thread_ldadd)
150 slice_color_SOURCES = slice-color.c memchunks.c
151 slice_color_LDADD = $(thread_ldadd)
152 slice_concurrent_SOURCES = slice-concurrent.c
153 slice_concurrent_LDADD = $(thread_ldadd)
154 slice_threadinit_SOURCES = slice-threadinit.c
155 slice_threadinit_LDADD = $(thread_ldadd)
156 spawn_test_LDADD = $(progs_ldadd)
157 thread_test_LDADD = $(thread_ldadd)
158 threadpool_test_LDADD = $(thread_ldadd)
159 type_test_LDADD = $(progs_ldadd)
160 unicode_encoding_LDADD = $(progs_ldadd)
161 unicode_caseconv_LDADD = $(progs_ldadd)
162
163 noinst_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
164
165 libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
166 libmoduletestplugin_a_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
167 libmoduletestplugin_a_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
168
169 libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
170 libmoduletestplugin_b_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
171 libmoduletestplugin_b_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
172
173 dist-hook: $(BUILT_EXTRA_DIST)
174         files='$(BUILT_EXTRA_DIST)';                            \
175         for f in $$files; do                                    \
176           if test -f $$f; then d=.; else d=$(srcdir); fi;       \
177           cp $$d/$$f $(distdir) || exit 1; done
178         mkdir $(distdir)/collate;                               \
179         for f in $(srcdir)/collate/* ; do                       \
180           if test -f $$f; then cp $$f $(distdir)/collate; fi; done
181
182 DISTCLEANFILES =                \
183         iochannel-test-outfile  \
184         file-test-get-contents  \
185         maptest                 \
186         mapchild                \
187         collate.out