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