Merge remote-tracking branch 'wjt/arg0namespace' into arg0namespace-24317
[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) $(DBUS_TEST_CFLAGS) 
8
9 libdbus_testutils_la_SOURCES = test-utils.h test-utils.c
10
11 noinst_LTLIBRARIES = libdbus-testutils.la
12
13 if DBUS_BUILD_TESTS
14 ## break-loader removed for now
15 ## most of these binaries are used in tests but are not themselves tests
16 TEST_BINARIES=test-service test-names test-shell-service shell-test spawn-test test-segfault test-exit test-sleep-forever
17
18 ## these are the things to run in make check (i.e. they are actual tests)
19 ## (binaries in here must also be in TEST_BINARIES)
20 TESTS=shell-test
21 else
22 TEST_BINARIES=
23 TESTS=
24 endif
25
26 noinst_PROGRAMS= $(TEST_BINARIES)
27
28 test_service_SOURCES=                           \
29         test-service.c
30
31 test_names_SOURCES=                             \
32         test-names.c
33
34 ##break_loader_SOURCES=                         \
35 ##      break-loader.c
36
37 test_shell_service_SOURCES =                    \
38         test-shell-service.c
39
40 shell_test_SOURCES=                             \
41         shell-test.c
42
43 spawn_test_SOURCES=                             \
44         spawn-test.c
45
46 test_exit_SOURCES =                             \
47         test-exit.c
48
49 test_segfault_SOURCES =                         \
50         test-segfault.c
51
52 test_sleep_forever_SOURCES =                    \
53         test-sleep-forever.c
54
55 # When any programs are not linked to libdbus-internal, fix this.
56 AM_CPPFLAGS=-DDBUS_STATIC_BUILD
57 TEST_LIBS=$(top_builddir)/dbus/libdbus-internal.la $(DBUS_TEST_LIBS)
58
59 test_service_LDADD=libdbus-testutils.la $(TEST_LIBS)
60 test_service_LDFLAGS=@R_DYNAMIC_LDFLAG@
61 test_names_LDADD=libdbus-testutils.la $(TEST_LIBS)
62 test_names_LDFLAGS=@R_DYNAMIC_LDFLAG@
63 ## break_loader_LDADD= $(TEST_LIBS)
64 ## break_loader_LDFLAGS=@R_DYNAMIC_LDFLAG@
65 test_shell_service_LDADD=libdbus-testutils.la $(TEST_LIBS)
66 test_shell_service_LDFLAGS=@R_DYNAMIC_LDFLAG@
67 shell_test_LDADD=libdbus-testutils.la $(TEST_LIBS)
68 shell_test_LDFLAGS=@R_DYNAMIC_LDFLAG@
69 spawn_test_LDADD=$(TEST_LIBS)
70 spawn_test_LDFLAGS=@R_DYNAMIC_LDFLAG@
71
72 EXTRA_DIST=
73
74 ## keep these in creation order, i.e. uppermost dirs first 
75 TESTDIRS=                                       \
76         data                                    \
77         data/valid-messages                     \
78         data/invalid-messages                   \
79         data/incomplete-messages                \
80         data/auth                               \
81         data/sha-1                              \
82         data/valid-config-files                 \
83         data/valid-config-files-system          \
84         data/valid-config-files/basic.d         \
85         data/valid-config-files/session.d       \
86         data/valid-config-files/system.d        \
87         data/valid-service-files                \
88         data/valid-service-files-system         \
89         data/invalid-service-files-system       \
90         data/invalid-config-files               \
91         data/invalid-config-files-system        \
92         data/equiv-config-files                 \
93         data/equiv-config-files/basic           \
94         data/equiv-config-files/basic/basic.d   \
95         data/equiv-config-files/entities        \
96         data/equiv-config-files/entities/basic.d
97
98
99 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" \)
100
101 dist-hook:
102         for D in $(TESTDIRS); do                                                \
103                 test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ;      \
104         done ;                                                                  \
105         FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ;                                    \
106         for F in $$FILES; do                                                    \
107                 B=`basename $$F`; \
108                 if test -e $$F.in; then \
109                         echo "-- Skipping file $$F (.in version exists)"; \
110                 elif test "x$$B" = xrun-with-tmp-session-bus.conf; then \
111                         echo "-- Skipping file $$F (generated)"; \
112                 elif test -e "$(top_srcdir)/bus/$$B"; then \
113                         echo "-- Skipping file $$F (from /bus/)"; \
114                 else \
115                         echo '-- Disting file '$$F ; \
116                         cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1; \
117                 fi; \
118         done
119
120 ## copy tests to builddir so that generated tests and static tests 
121 ## are all in one place.
122 all-local:
123         $(AM_V_at)for D in $(TESTDIRS); do                                                              \
124                 test -d $(top_builddir)/test/$$D || mkdir $(top_builddir)/test/$$D || exit 1 ;  \
125         done ;                                                                                  \
126         if ! (test $(srcdir) = . || test $(srcdir) -ef .) ; then                                                                \
127                 FILES=`(cd $(srcdir) && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;                                      \
128                 for F in $$FILES; do                                                            \
129                         SRC=$(srcdir)/$$F ;                                                     \
130                         DEST=$(top_builddir)/test/$$F ;                                         \
131                         echo '-- Copying test file '$$F ;                                       \
132                         cp $$SRC $$DEST || exit 1 ;                                             \
133                         chmod u+w $$DEST || exit 1 ;                                            \
134                 done ;                                                                          \
135         else                                                                                    \
136                 echo '-- No need to copy test data as srcdir = builddir' ;                      \
137         fi ;                                                                                    \
138         echo '-- Copying' $(top_builddir)/bus/*.conf 'to test directory' ;                      \
139         cp $(top_builddir)/bus/*.conf $(top_builddir)/test/data/valid-config-files || exit 1 ;  \
140         chmod u+w $(top_builddir)/test/data/valid-config-files/*.conf || exit 1
141
142 ## this doesn't clean generated test data files when srcdir=builddir
143 clean-local:
144         if test $(srcdir) != . ; then                                   \
145                 FILES=`(cd $(top_builddir)/test && $(FIND_TESTS) | grep -Ev "(.svn|CVS)" )` ;   \
146                 for F in $$FILES; do                                    \
147                         DEST=$(top_builddir)/test/$$F ;                 \
148                         echo '-- Deleting test file '$$F ;              \
149                         rm $$DEST || exit 1 ;                           \
150                 done ;                                                  \
151                 REVERSEDIRS= ;                                          \
152                 for D in $(TESTDIRS); do                                \
153                         REVERSEDIRS="$$D $$REVERSEDIRS" ;               \
154                 done ;                                                  \
155                 for D in $$REVERSEDIRS; do                              \
156                         rmdir $(top_builddir)/test/$$D || exit 1 ;      \
157                 done ;                                                  \
158         fi