python: Create new vlog module.
[cascardo/ovs.git] / tests / automake.mk
1 EXTRA_DIST += \
2         $(TESTSUITE_AT) \
3         $(TESTSUITE) \
4         tests/atlocal.in \
5         $(srcdir)/package.m4 \
6         $(srcdir)/tests/testsuite
7 TESTSUITE_AT = \
8         tests/testsuite.at \
9         tests/ovsdb-macros.at \
10         tests/library.at \
11         tests/bundle.at \
12         tests/classifier.at \
13         tests/check-structs.at \
14         tests/daemon.at \
15         tests/daemon-py.at \
16         tests/ofp-print.at \
17         tests/ovs-ofctl.at \
18         tests/odp.at \
19         tests/multipath.at \
20         tests/autopath.at \
21         tests/learn.at \
22         tests/vconn.at \
23         tests/file_name.at \
24         tests/aes128.at \
25         tests/uuid.at \
26         tests/json.at \
27         tests/jsonrpc.at \
28         tests/jsonrpc-py.at \
29         tests/timeval.at \
30         tests/lockfile.at \
31         tests/reconnect.at \
32         tests/ofproto-dpif.at \
33         tests/ofproto-macros.at \
34         tests/ofproto.at \
35         tests/ovsdb.at \
36         tests/ovsdb-log.at \
37         tests/ovsdb-types.at \
38         tests/ovsdb-data.at \
39         tests/ovsdb-column.at \
40         tests/ovsdb-table.at \
41         tests/ovsdb-row.at \
42         tests/ovsdb-schema.at \
43         tests/ovsdb-condition.at \
44         tests/ovsdb-mutation.at \
45         tests/ovsdb-query.at \
46         tests/ovsdb-transaction.at \
47         tests/ovsdb-execution.at \
48         tests/ovsdb-trigger.at \
49         tests/ovsdb-tool.at \
50         tests/ovsdb-server.at \
51         tests/ovsdb-monitor.at \
52         tests/ovsdb-idl.at \
53         tests/ovs-vsctl.at \
54         tests/ovs-monitor-ipsec.at \
55         tests/ovs-xapi-sync.at \
56         tests/interface-reconfigure.at \
57         tests/vlog.at
58 TESTSUITE = $(srcdir)/tests/testsuite
59 DISTCLEANFILES += tests/atconfig tests/atlocal
60 EXTRA_DIST += tests/compare-odp-actions.pl
61
62 AUTOTEST_PATH = utilities:vswitchd:ovsdb:tests
63
64 check-local: tests/atconfig tests/atlocal $(TESTSUITE)
65         $(SHELL) '$(TESTSUITE)' -C tests AUTOTEST_PATH=$(AUTOTEST_PATH) $(TESTSUITEFLAGS)
66 \f
67 # lcov support
68
69 lcov_wrappers = \
70         tests/lcov/ovs-appctl \
71         tests/lcov/ovs-vsctl \
72         tests/lcov/ovsdb-client \
73         tests/lcov/ovsdb-server \
74         tests/lcov/ovsdb-tool \
75         tests/lcov/test-aes128 \
76         tests/lcov/test-bundle \
77         tests/lcov/test-byte-order \
78         tests/lcov/test-classifier \
79         tests/lcov/test-csum \
80         tests/lcov/test-file_name \
81         tests/lcov/test-flows \
82         tests/lcov/test-hash \
83         tests/lcov/test-hmap \
84         tests/lcov/test-json \
85         tests/lcov/test-jsonrpc \
86         tests/lcov/test-list \
87         tests/lcov/test-lockfile \
88         tests/lcov/test-multipath \
89         tests/lcov/test-odp \
90         tests/lcov/test-ovsdb \
91         tests/lcov/test-packets \
92         tests/lcov/test-random \
93         tests/lcov/test-reconnect \
94         tests/lcov/test-sha1 \
95         tests/lcov/test-timeval \
96         tests/lcov/test-type-props \
97         tests/lcov/test-unix-socket \
98         tests/lcov/test-uuid \
99         tests/lcov/test-vconn
100
101 $(lcov_wrappers): tests/lcov-wrapper.in
102         @test -d tests/lcov || mkdir tests/lcov
103         sed -e 's,[@]abs_top_builddir[@],$(abs_top_builddir),' \
104             -e 's,[@]wrap_program[@],$@,' \
105                 $(top_srcdir)/tests/lcov-wrapper.in > $@.tmp
106         chmod +x $@.tmp
107         mv $@.tmp $@
108 CLEANFILES += $(lcov_wrappers)
109 EXTRA_DIST += tests/lcov-wrapper.in
110
111 LCOV = lcov -b $(abs_top_builddir) -d $(abs_top_builddir) -q
112 check-lcov: all tests/atconfig tests/atlocal $(TESTSUITE) $(lcov_wrappers)
113         rm -fr tests/coverage.html tests/coverage.info
114         $(LCOV) -c -i -o - > tests/coverage.info
115         $(SHELL) '$(TESTSUITE)' -C tests CHECK_LCOV=true DISABLE_LCOV=false AUTOTEST_PATH='tests/lcov:$(AUTOTEST_PATH)' $(TESTSUITEFLAGS); \
116                 rc=$$?; \
117                 echo "Producing coverage.html..."; \
118                 cd tests && genhtml -q -o coverage.html coverage.info; \
119                 exit $$rc
120 \f
121 # valgrind support
122
123 valgrind_wrappers = \
124         tests/valgrind/ovs-appctl \
125         tests/valgrind/ovs-vsctl \
126         tests/valgrind/ovsdb-client \
127         tests/valgrind/ovsdb-server \
128         tests/valgrind/ovsdb-tool \
129         tests/valgrind/test-aes128 \
130         tests/valgrind/test-bundle \
131         tests/valgrind/test-byte-order \
132         tests/valgrind/test-classifier \
133         tests/valgrind/test-csum \
134         tests/valgrind/test-file_name \
135         tests/valgrind/test-flows \
136         tests/valgrind/test-hash \
137         tests/valgrind/test-hmap \
138         tests/valgrind/test-json \
139         tests/valgrind/test-jsonrpc \
140         tests/valgrind/test-list \
141         tests/valgrind/test-lockfile \
142         tests/valgrind/test-multipath \
143         tests/valgrind/test-odp \
144         tests/valgrind/test-openflowd \
145         tests/valgrind/test-ovsdb \
146         tests/valgrind/test-packets \
147         tests/valgrind/test-random \
148         tests/valgrind/test-reconnect \
149         tests/valgrind/test-sha1 \
150         tests/valgrind/test-timeval \
151         tests/valgrind/test-type-props \
152         tests/valgrind/test-unix-socket \
153         tests/valgrind/test-uuid \
154         tests/valgrind/test-vconn
155
156 $(valgrind_wrappers): tests/valgrind-wrapper.in
157         @test -d tests/valgrind || mkdir tests/valgrind
158         sed -e 's,[@]wrap_program[@],$@,' \
159                 $(top_srcdir)/tests/valgrind-wrapper.in > $@.tmp
160         chmod +x $@.tmp
161         mv $@.tmp $@
162 CLEANFILES += $(valgrind_wrappers)
163 EXTRA_DIST += tests/valgrind-wrapper.in
164
165 VALGRIND = valgrind --log-file=valgrind.%p --leak-check=full \
166         --suppressions=$(abs_top_srcdir)/tests/openssl.supp --num-callers=20
167 EXTRA_DIST += tests/openssl.supp
168 check-valgrind: all tests/atconfig tests/atlocal $(TESTSUITE) $(valgrind_wrappers)
169         $(SHELL) '$(TESTSUITE)' -C tests CHECK_VALGRIND=true VALGRIND='$(VALGRIND)' AUTOTEST_PATH='tests/valgrind:$(AUTOTEST_PATH)' -d $(TESTSUITEFLAGS)
170         @echo
171         @echo '----------------------------------------------------------------------'
172         @echo 'Valgrind output can be found in tests/testsuite.dir/*/valgrind.*'
173         @echo '----------------------------------------------------------------------'
174 \f
175 clean-local:
176         test ! -f '$(TESTSUITE)' || $(SHELL) '$(TESTSUITE)' -C tests --clean
177
178 AUTOM4TE = autom4te
179 AUTOTEST = $(AUTOM4TE) --language=autotest
180 $(TESTSUITE): package.m4 $(TESTSUITE_AT)
181         $(AUTOTEST) -I '$(srcdir)' -o $@.tmp $@.at
182         mv $@.tmp $@
183
184 # The `:;' works around a Bash 3.2 bug when the output is not writeable.
185 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
186         :;{ \
187           echo '# Signature of the current package.' && \
188           echo 'm4_define([AT_PACKAGE_NAME],      [$(PACKAGE_NAME)])' && \
189           echo 'm4_define([AT_PACKAGE_TARNAME],   [$(PACKAGE_TARNAME)])' && \
190           echo 'm4_define([AT_PACKAGE_VERSION],   [$(PACKAGE_VERSION)])' && \
191           echo 'm4_define([AT_PACKAGE_STRING],    [$(PACKAGE_STRING)])' && \
192           echo 'm4_define([AT_PACKAGE_BUGREPORT], [$(PACKAGE_BUGREPORT)])'; \
193         } >'$(srcdir)/package.m4'
194
195 noinst_PROGRAMS += tests/test-aes128
196 tests_test_aes128_SOURCES = tests/test-aes128.c
197 tests_test_aes128_LDADD = lib/libopenvswitch.a
198
199 noinst_PROGRAMS += tests/test-bundle
200 tests_test_bundle_SOURCES = tests/test-bundle.c
201 tests_test_bundle_LDADD = lib/libopenvswitch.a
202
203 noinst_PROGRAMS += tests/test-classifier
204 tests_test_classifier_SOURCES = tests/test-classifier.c
205 tests_test_classifier_LDADD = lib/libopenvswitch.a
206
207 noinst_PROGRAMS += tests/test-csum
208 tests_test_csum_SOURCES = tests/test-csum.c
209 tests_test_csum_LDADD = lib/libopenvswitch.a
210
211 noinst_PROGRAMS += tests/test-file_name
212 tests_test_file_name_SOURCES = tests/test-file_name.c
213 tests_test_file_name_LDADD = lib/libopenvswitch.a
214
215 noinst_PROGRAMS += tests/test-flows
216 tests_test_flows_SOURCES = tests/test-flows.c
217 tests_test_flows_LDADD = lib/libopenvswitch.a
218 dist_check_SCRIPTS = tests/flowgen.pl
219
220 noinst_PROGRAMS += tests/test-hash
221 tests_test_hash_SOURCES = tests/test-hash.c
222 tests_test_hash_LDADD = lib/libopenvswitch.a
223
224 noinst_PROGRAMS += tests/test-hmap
225 tests_test_hmap_SOURCES = tests/test-hmap.c
226 tests_test_hmap_LDADD = lib/libopenvswitch.a
227
228 noinst_PROGRAMS += tests/test-json
229 tests_test_json_SOURCES = tests/test-json.c
230 tests_test_json_LDADD = lib/libopenvswitch.a
231
232 noinst_PROGRAMS += tests/test-jsonrpc
233 tests_test_jsonrpc_SOURCES = tests/test-jsonrpc.c
234 tests_test_jsonrpc_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
235
236 noinst_PROGRAMS += tests/test-list
237 tests_test_list_SOURCES = tests/test-list.c
238 tests_test_list_LDADD = lib/libopenvswitch.a
239
240 noinst_PROGRAMS += tests/test-lockfile
241 tests_test_lockfile_SOURCES = tests/test-lockfile.c
242 tests_test_lockfile_LDADD = lib/libopenvswitch.a
243
244 noinst_PROGRAMS += tests/test-multipath
245 tests_test_multipath_SOURCES = tests/test-multipath.c
246 tests_test_multipath_LDADD = lib/libopenvswitch.a
247
248 noinst_PROGRAMS += tests/test-openflowd
249 EXTRA_DIST += tests/test-openflowd.8.in
250 DISTCLEANFILES += tests/test-openflowd.8
251 noinst_man_MANS += tests/ovs-openflowd.8
252 tests_test_openflowd_SOURCES = tests/test-openflowd.c
253 tests_test_openflowd_LDADD = \
254         ofproto/libofproto.a \
255         lib/libsflow.a \
256         lib/libopenvswitch.a \
257         $(SSL_LIBS)
258
259
260 noinst_PROGRAMS += tests/test-packets
261 tests_test_packets_SOURCES = tests/test-packets.c
262 tests_test_packets_LDADD = lib/libopenvswitch.a
263
264 noinst_PROGRAMS += tests/test-random
265 tests_test_random_SOURCES = tests/test-random.c
266 tests_test_random_LDADD = lib/libopenvswitch.a
267
268 noinst_PROGRAMS += tests/test-unix-socket
269 tests_test_unix_socket_SOURCES = tests/test-unix-socket.c
270 tests_test_unix_socket_LDADD = lib/libopenvswitch.a
271
272 noinst_PROGRAMS += tests/test-odp
273 tests_test_odp_SOURCES = tests/test-odp.c
274 tests_test_odp_LDADD = lib/libopenvswitch.a
275
276 noinst_PROGRAMS += tests/test-ovsdb
277 tests_test_ovsdb_SOURCES = \
278         tests/test-ovsdb.c \
279         tests/idltest.c \
280         tests/idltest.h
281 EXTRA_DIST += tests/uuidfilt.pl tests/ovsdb-monitor-sort.pl
282 tests_test_ovsdb_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a $(SSL_LIBS)
283
284 # idltest schema and IDL
285 OVSIDL_BUILT += \
286         tests/idltest.c \
287         tests/idltest.h \
288         tests/idltest.ovsidl \
289         tests/idltest.py
290 IDLTEST_IDL_FILES = tests/idltest.ovsschema tests/idltest.ann
291 EXTRA_DIST += $(IDLTEST_IDL_FILES)
292 CLEANFILES += tests/idltest.pyc tests/idltest.pyo
293 tests/idltest.ovsidl: $(IDLTEST_IDL_FILES)
294         $(OVSDB_IDLC) -C $(srcdir) annotate $(IDLTEST_IDL_FILES) > $@.tmp
295         mv $@.tmp $@
296
297 tests/idltest.c: tests/idltest.h
298
299 noinst_SCRIPTS += tests/idltest.py
300
301 noinst_PROGRAMS += tests/test-reconnect
302 tests_test_reconnect_SOURCES = tests/test-reconnect.c
303 tests_test_reconnect_LDADD = lib/libopenvswitch.a
304
305 noinst_PROGRAMS += tests/test-sha1
306 tests_test_sha1_SOURCES = tests/test-sha1.c
307 tests_test_sha1_LDADD = lib/libopenvswitch.a
308
309 noinst_PROGRAMS += tests/test-timeval
310 tests_test_timeval_SOURCES = tests/test-timeval.c
311 tests_test_timeval_LDADD = lib/libopenvswitch.a
312
313 noinst_PROGRAMS += tests/test-strtok_r
314 tests_test_strtok_r_SOURCES = tests/test-strtok_r.c
315
316 noinst_PROGRAMS += tests/test-type-props
317 tests_test_type_props_SOURCES = tests/test-type-props.c
318
319 noinst_PROGRAMS += tests/test-util
320 tests_test_util_SOURCES = tests/test-util.c
321 tests_test_util_LDADD = lib/libopenvswitch.a
322
323 noinst_PROGRAMS += tests/test-uuid
324 tests_test_uuid_SOURCES = tests/test-uuid.c
325 tests_test_uuid_LDADD = lib/libopenvswitch.a
326
327 noinst_PROGRAMS += tests/test-vconn
328 tests_test_vconn_SOURCES = tests/test-vconn.c
329 tests_test_vconn_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
330
331 noinst_PROGRAMS += tests/test-byte-order
332 tests_test_byte_order_SOURCES = tests/test-byte-order.c
333 tests_test_byte_order_LDADD = lib/libopenvswitch.a
334
335 # Python tests.
336 EXTRA_DIST += \
337         tests/test-daemon.py \
338         tests/test-json.py \
339         tests/test-jsonrpc.py \
340         tests/test-ovsdb.py \
341         tests/test-reconnect.py \
342         tests/MockXenAPI.py \
343         tests/test-vlog.py
344
345 if HAVE_OPENSSL
346 TESTPKI_FILES = \
347         tests/testpki-cacert.pem \
348         tests/testpki-cert.pem \
349         tests/testpki-privkey.pem \
350         tests/testpki-req.pem \
351         tests/testpki-cert2.pem \
352         tests/testpki-privkey2.pem \
353         tests/testpki-req2.pem
354 check_DATA += $(TESTPKI_FILES)
355 CLEANFILES += $(TESTPKI_FILES)
356
357 tests/testpki-cacert.pem: tests/pki/stamp; cp tests/pki/switchca/cacert.pem $@
358 tests/testpki-cert.pem: tests/pki/stamp; cp tests/pki/test-cert.pem $@
359 tests/testpki-req.pem: tests/pki/stamp; cp tests/pki/test-req.pem $@
360 tests/testpki-privkey.pem: tests/pki/stamp; cp tests/pki/test-privkey.pem $@
361 tests/testpki-cert2.pem: tests/pki/stamp; cp tests/pki/test2-cert.pem $@
362 tests/testpki-req2.pem: tests/pki/stamp; cp tests/pki/test2-req.pem $@
363 tests/testpki-privkey2.pem: tests/pki/stamp; cp tests/pki/test2-privkey.pem $@
364
365 OVS_PKI = $(SHELL) $(srcdir)/utilities/ovs-pki.in --dir=tests/pki --log=tests/ovs-pki.log
366 tests/pki/stamp:
367         rm -f tests/pki/stamp
368         rm -rf tests/pki
369         $(OVS_PKI) init
370         $(OVS_PKI) req+sign tests/pki/test
371         $(OVS_PKI) req+sign tests/pki/test2
372         : > tests/pki/stamp
373 CLEANFILES += tests/ovs-pki.log
374
375 CLEAN_LOCAL += clean-pki
376 clean-pki:
377         rm -f tests/pki/stamp
378         rm -rf tests/pki
379 endif