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