Merge branch 'dbus-1.2'
[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 if DBUS_GCOV_ENABLED
27 GCOV_BINARIES=decode-gcov
28 else
29 GCOV_BINARIES=
30 endif
31
32 noinst_PROGRAMS= $(TEST_BINARIES) $(GCOV_BINARIES)
33
34 test_service_SOURCES=                           \
35         test-service.c
36
37 test_names_SOURCES=                             \
38         test-names.c
39
40 ##break_loader_SOURCES=                         \
41 ##      break-loader.c
42
43 test_shell_service_SOURCES =                    \
44         test-shell-service.c
45
46 shell_test_SOURCES=                             \
47         shell-test.c
48
49 spawn_test_SOURCES=                             \
50         spawn-test.c
51
52 test_exit_SOURCES =                             \
53         test-exit.c
54
55 test_segfault_SOURCES =                         \
56         test-segfault.c
57
58 test_sleep_forever_SOURCES =                    \
59         test-sleep-forever.c
60
61 decode_gcov_SOURCES=                            \
62         decode-gcov.c
63
64 TEST_LIBS=$(top_builddir)/dbus/libdbus-convenience.la $(DBUS_TEST_LIBS)
65
66 test_service_LDADD=libdbus-testutils.la $(TEST_LIBS)
67 test_service_LDFLAGS=@R_DYNAMIC_LDFLAG@
68 test_names_LDADD=libdbus-testutils.la $(TEST_LIBS)
69 test_names_LDFLAGS=@R_DYNAMIC_LDFLAG@
70 ## break_loader_LDADD= $(TEST_LIBS)
71 ## break_loader_LDFLAGS=@R_DYNAMIC_LDFLAG@
72 test_shell_service_LDADD=libdbus-testutils.la $(TEST_LIBS)
73 test_shell_service_LDFLAGS=@R_DYNAMIC_LDFLAG@
74 shell_test_LDADD=libdbus-testutils.la $(TEST_LIBS)
75 shell_test_LDFLAGS=@R_DYNAMIC_LDFLAG@
76 spawn_test_LDADD=$(TEST_LIBS)
77 spawn_test_LDFLAGS=@R_DYNAMIC_LDFLAG@
78 decode_gcov_LDADD=$(TEST_LIBS)
79 decode_gcov_LDFLAGS=@R_DYNAMIC_LDFLAG@
80
81 EXTRA_DIST=
82
83 ## keep these in creation order, i.e. uppermost dirs first 
84 TESTDIRS=                                       \
85         data                                    \
86         data/valid-messages                     \
87         data/invalid-messages                   \
88         data/incomplete-messages                \
89         data/auth                               \
90         data/sha-1                              \
91         data/valid-config-files                 \
92         data/valid-config-files-system          \
93         data/valid-config-files/basic.d         \
94         data/valid-config-files/session.d       \
95         data/valid-config-files/system.d        \
96         data/valid-service-files                \
97         data/valid-service-files-system         \
98         data/invalid-service-files-system       \
99         data/invalid-config-files               \
100         data/invalid-config-files-system        \
101         data/equiv-config-files                 \
102         data/equiv-config-files/basic           \
103         data/equiv-config-files/basic/basic.d   \
104         data/equiv-config-files/entities        \
105         data/equiv-config-files/entities/basic.d
106
107
108 FIND_TESTS=find . -name "*.message" -o -name "*.message-raw" -o -name "*.auth-script" -o -name "*.sha1" -o -name "*.txt" -o -name "*.conf" -o -name "*.service"
109
110 dist-hook:
111         for D in $(TESTDIRS); do                                                \
112                 test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ;      \
113         done ;                                                                  \
114         FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ;                                    \
115         for F in $$FILES; do                                                    \
116                 echo '-- Disting file '$$F ;                                    \
117                 cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1 ;                          \
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         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