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