test: promote GLIB_CFLAGS, DBUS_GLIB_CFLAGS to top level and use AM_CPPFLAGS
[platform/upstream/dbus.git] / test / Makefile.am
1 ## the "name-test" subdir in fact contains a bunch of tests now that need a temporary bus 
2 ## to be running to do stuff with. The directory should be renamed.
3 ## We want to build the current directory first to pick up the testutils lib
4 SUBDIRS= . name-test 
5 DIST_SUBDIRS=name-test
6
7 AM_CPPFLAGS = \
8         -I$(top_srcdir) \
9         $(GLIB_CFLAGS) \
10         $(DBUS_GLIB_CFLAGS) \
11         $(NULL)
12
13 # improve backtraces from test stuff
14 AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
15
16 libdbus_testutils_la_SOURCES = \
17         test-utils.c \
18         test-utils.h \
19         $(NULL)
20 libdbus_testutils_la_LIBADD = \
21         $(top_builddir)/dbus/libdbus-internal.la \
22         $(NULL)
23
24 noinst_LTLIBRARIES = libdbus-testutils.la
25
26 if DBUS_BUILD_TESTS
27 ## break-loader removed for now
28 ## most of these binaries are used in tests but are not themselves tests
29 TEST_BINARIES = \
30         shell-test \
31         spawn-test \
32         test-exit \
33         test-names \
34         test-segfault \
35         test-service \
36         test-shell-service \
37         test-sleep-forever \
38         $(NULL)
39
40 ## these are the things to run in make check (i.e. they are actual tests)
41 ## (binaries in here must also be in TEST_BINARIES)
42 TESTS = \
43         shell-test \
44         $(NULL)
45
46 ## These are conceptually part of directories that come earlier in SUBDIRS
47 ## order, but we don't want to run them til we arrive in this directory,
48 ## since they depend on stuff from this directory
49 TESTS += \
50         ../bus/bus-test$(EXEEXT) \
51         ../bus/bus-test-system$(EXEEXT) \
52         ../dbus/dbus-test$(EXEEXT) \
53         $(NULL)
54
55 if DBUS_UNIX
56 TESTS += ../bus/bus-test-launch-helper$(EXEEXT)
57 endif
58
59 else !DBUS_BUILD_TESTS
60
61 TEST_BINARIES=
62 TESTS=
63
64 endif !DBUS_BUILD_TESTS
65
66 noinst_PROGRAMS= $(TEST_BINARIES)
67
68 test_service_SOURCES=                           \
69         test-service.c
70
71 test_names_SOURCES=                             \
72         test-names.c
73
74 ##break_loader_SOURCES=                         \
75 ##      break-loader.c
76
77 test_shell_service_SOURCES =                    \
78         test-shell-service.c
79
80 shell_test_SOURCES=                             \
81         shell-test.c
82
83 spawn_test_SOURCES=                             \
84         spawn-test.c
85
86 test_exit_SOURCES =                             \
87         test-exit.c
88
89 test_segfault_SOURCES =                         \
90         test-segfault.c
91
92 test_sleep_forever_SOURCES =                    \
93         test-sleep-forever.c
94
95 static_cppflags = \
96         $(AM_CPPFLAGS) \
97         -DDBUS_STATIC_BUILD \
98         $(NULL)
99
100 test_service_CPPFLAGS = $(static_cppflags)
101 test_service_LDADD = libdbus-testutils.la
102 test_names_CPPFLAGS = $(static_cppflags)
103 test_names_LDADD = libdbus-testutils.la
104 ## break_loader_CPPFLAGS = $(static_cppflags)
105 ## break_loader_LDADD = $(top_builddir)/dbus/libdbus-internal.la
106 test_shell_service_CPPFLAGS = $(static_cppflags)
107 test_shell_service_LDADD = libdbus-testutils.la
108 shell_test_CPPFLAGS = $(static_cppflags)
109 shell_test_LDADD = libdbus-testutils.la
110 spawn_test_CPPFLAGS = $(static_cppflags)
111 spawn_test_LDADD = $(top_builddir)/dbus/libdbus-internal.la
112
113 EXTRA_DIST = dbus-test-runner
114
115 testexecdir = $(libdir)/dbus-1.0/test
116
117 testexec_PROGRAMS =
118
119 installable_tests = \
120         test-corrupt \
121         test-dbus-daemon \
122         test-dbus-daemon-eavesdrop \
123         test-loopback \
124         test-marshal \
125         test-relay \
126         $(NULL)
127
128 installcheck_tests =
129 installcheck_environment = \
130         DBUS_TEST_DAEMON=$(DESTDIR)$(DBUS_DAEMONDIR)/dbus-daemon$(EXEEXT) \
131         DBUS_TEST_SYSCONFDIR=$(DESTDIR)$(sysconfdir)
132
133 TESTS_ENVIRONMENT = \
134         DBUS_BLOCK_ON_ABORT=1 \
135         DBUS_FATAL_WARNINGS=1 \
136         DBUS_TEST_DAEMON=@abs_top_builddir@/bus/dbus-daemon$(EXEEXT) \
137         DBUS_TEST_DATA=@abs_top_builddir@/test/data \
138         DBUS_TEST_HOMEDIR=@abs_top_builddir@/dbus \
139         $(NULL)
140
141 test_corrupt_SOURCES = corrupt.c
142 test_corrupt_LDADD = $(top_builddir)/dbus/libdbus-1.la \
143     $(GLIB_LIBS) \
144     $(DBUS_GLIB_LIBS)
145
146 test_loopback_SOURCES = loopback.c
147 test_loopback_LDADD = $(top_builddir)/dbus/libdbus-1.la \
148     $(GLIB_LIBS) \
149     $(DBUS_GLIB_LIBS)
150
151 test_relay_SOURCES = relay.c
152 test_relay_LDADD = $(top_builddir)/dbus/libdbus-1.la \
153     $(GLIB_LIBS) \
154     $(DBUS_GLIB_LIBS)
155
156 test_dbus_daemon_SOURCES = dbus-daemon.c
157 test_dbus_daemon_LDADD = $(top_builddir)/dbus/libdbus-1.la \
158     $(GLIB_LIBS) \
159     $(DBUS_GLIB_LIBS)
160
161 test_dbus_daemon_eavesdrop_SOURCES = dbus-daemon-eavesdrop.c
162 test_dbus_daemon_eavesdrop_CPPFLAGS = $(GLIB_CFLAGS) $(DBUS_GLIB_CFLAGS)
163 test_dbus_daemon_eavesdrop_LDFLAGS = @R_DYNAMIC_LDFLAG@
164 test_dbus_daemon_eavesdrop_LDADD = $(top_builddir)/dbus/libdbus-1.la \
165     $(GLIB_LIBS) \
166     $(DBUS_GLIB_LIBS)
167
168 test_marshal_SOURCES = marshal.c
169 test_marshal_LDADD = $(top_builddir)/dbus/libdbus-1.la \
170     $(GLIB_LIBS) \
171     $(DBUS_GLIB_LIBS)
172
173 if DBUS_ENABLE_MODULAR_TESTS
174 TESTS += $(installable_tests)
175 installcheck_tests += $(installable_tests)
176
177 if DBUS_ENABLE_INSTALLED_TESTS
178   testexec_PROGRAMS += $(installable_tests)
179 else !DBUS_ENABLE_INSTALLED_TESTS
180   noinst_PROGRAMS += $(installable_tests)
181 endif !DBUS_ENABLE_INSTALLED_TESTS
182
183 endif DBUS_ENABLE_MODULAR_TESTS
184
185 # If we're installing the tests into a DESTDIR we can't run them
186 # again using the installed copy, because we don't know how to
187 # do a portable equivalent of setting LD_LIBRARY_PATH.
188 installcheck-local:
189         $(MAKE) check-TESTS TESTS='$$(installcheck_tests)' \
190                 TESTS_ENVIRONMENT='$$(installcheck_environment)'
191 if DBUS_ENABLE_INSTALLED_TESTS
192         test -n "$(DESTDIR)" || \
193         $(installcheck_environment) \
194                 $(srcdir)/dbus-test-runner \
195                 $(testexecdir) \
196                 $(testexec_PROGRAMS)
197 endif DBUS_ENABLE_INSTALLED_TESTS
198
199 ## keep these in creation order, i.e. uppermost dirs first 
200 TESTDIRS=                                       \
201         data                                    \
202         data/valid-messages                     \
203         data/invalid-messages                   \
204         data/incomplete-messages                \
205         data/auth                               \
206         data/sha-1                              \
207         data/valid-config-files                 \
208         data/valid-config-files-system          \
209         data/valid-config-files/basic.d         \
210         data/valid-config-files/session.d       \
211         data/valid-config-files/system.d        \
212         data/valid-service-files                \
213         data/valid-service-files-system         \
214         data/invalid-service-files-system       \
215         data/invalid-config-files               \
216         data/invalid-config-files-system        \
217         data/equiv-config-files                 \
218         data/equiv-config-files/basic           \
219         data/equiv-config-files/basic/basic.d   \
220         data/equiv-config-files/entities        \
221         data/equiv-config-files/entities/basic.d
222
223
224 FIND_TESTS=find . -type f -a \( -name "*.message" -o -name "*.message-raw" -o -name "*.auth-script" -o -name "*.sha1" -o -name "*.txt" -o -name "*.conf" -o -name "*.service" \)
225
226 dist-hook:
227         for D in $(TESTDIRS); do                                                \
228                 test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ;      \
229         done ;                                                                  \
230         FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ;                                    \
231         for F in $$FILES; do                                                    \
232                 B=`basename $$F`; \
233                 if test -e $$F.in; then \
234                         echo "-- Skipping file $$F (.in version exists)"; \
235                 elif test "x$$B" = xrun-with-tmp-session-bus.conf; then \
236                         echo "-- Skipping file $$F (generated)"; \
237                 elif test -e "$(top_srcdir)/bus/$$B"; then \
238                         echo "-- Skipping file $$F (from /bus/)"; \
239                 else \
240                         echo '-- Disting file '$$F ; \
241                         cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1; \
242                 fi; \
243         done
244
245 ## copy tests to builddir so that generated tests and static tests 
246 ## are all in one place.
247 all-local:
248         $(AM_V_at)for D in $(TESTDIRS); do                                                              \
249                 test -d $(top_builddir)/test/$$D || mkdir $(top_builddir)/test/$$D || exit 1 ;  \
250         done ;                                                                                  \
251         if ! (test $(srcdir) = . || test $(srcdir) -ef .) ; then                                                                \
252                 FILES=`(cd $(srcdir) && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;                                      \
253                 for F in $$FILES; do                                                            \
254                         SRC=$(srcdir)/$$F ;                                                     \
255                         DEST=$(top_builddir)/test/$$F ;                                         \
256                         echo '-- Copying test file '$$F ;                                       \
257                         cp $$SRC $$DEST || exit 1 ;                                             \
258                         chmod u+w $$DEST || exit 1 ;                                            \
259                 done ;                                                                          \
260         else                                                                                    \
261                 echo '-- No need to copy test data as srcdir = builddir' ;                      \
262         fi ;                                                                                    \
263         echo '-- Copying' $(top_builddir)/bus/*.conf 'to test directory' ;                      \
264         cp $(top_builddir)/bus/*.conf $(top_builddir)/test/data/valid-config-files || exit 1 ;  \
265         chmod u+w $(top_builddir)/test/data/valid-config-files/*.conf || exit 1
266
267 ## this doesn't clean generated test data files when srcdir=builddir
268 clean-local:
269         if test $(srcdir) != . ; then                                   \
270                 FILES=`(cd $(top_builddir)/test && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;   \
271                 for F in $$FILES; do                                    \
272                         DEST=$(top_builddir)/test/$$F ;                 \
273                         echo '-- Deleting test file '$$F ;              \
274                         rm $$DEST || exit 1 ;                           \
275                 done ;                                                  \
276                 REVERSEDIRS= ;                                          \
277                 for D in $(TESTDIRS); do                                \
278                         REVERSEDIRS="$$D $$REVERSEDIRS" ;               \
279                 done ;                                                  \
280                 for D in $$REVERSEDIRS; do                              \
281                         rmdir $(top_builddir)/test/$$D || exit 1 ;      \
282                 done ;                                                  \
283         fi