739d79e092a61b415a6ed7fc49a8993523e1915a
[sliver-openvswitch.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/ovs-vsctl \
98         tests/valgrind/ovs-vswitchd \
99         tests/valgrind/ovsdb-client \
100         tests/valgrind/ovsdb-server \
101         tests/valgrind/ovsdb-tool \
102         tests/valgrind/test-aes128 \
103         tests/valgrind/test-atomic \
104         tests/valgrind/test-bundle \
105         tests/valgrind/test-byte-order \
106         tests/valgrind/test-classifier \
107         tests/valgrind/test-csum \
108         tests/valgrind/test-file_name \
109         tests/valgrind/test-flows \
110         tests/valgrind/test-hash \
111         tests/valgrind/test-heap \
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-heap
223 tests_test_heap_SOURCES = tests/test-heap.c
224 tests_test_heap_LDADD = lib/libopenvswitch.la
225
226 noinst_PROGRAMS += tests/test-hindex
227 tests_test_hindex_SOURCES = tests/test-hindex.c
228 tests_test_hindex_LDADD = lib/libopenvswitch.la
229
230 noinst_PROGRAMS += tests/test-hmap
231 tests_test_hmap_SOURCES = tests/test-hmap.c
232 tests_test_hmap_LDADD = lib/libopenvswitch.la
233
234 noinst_PROGRAMS += tests/test-json
235 tests_test_json_SOURCES = tests/test-json.c
236 tests_test_json_LDADD = lib/libopenvswitch.la
237
238 noinst_PROGRAMS += tests/test-jsonrpc
239 tests_test_jsonrpc_SOURCES = tests/test-jsonrpc.c
240 tests_test_jsonrpc_LDADD = lib/libopenvswitch.la
241
242 noinst_PROGRAMS += tests/test-list
243 tests_test_list_SOURCES = tests/test-list.c
244 tests_test_list_LDADD = lib/libopenvswitch.la
245
246 noinst_PROGRAMS += tests/test-lockfile
247 tests_test_lockfile_SOURCES = tests/test-lockfile.c
248 tests_test_lockfile_LDADD = lib/libopenvswitch.la
249
250 noinst_PROGRAMS += tests/test-multipath
251 tests_test_multipath_SOURCES = tests/test-multipath.c
252 tests_test_multipath_LDADD = lib/libopenvswitch.la
253
254 noinst_PROGRAMS += tests/test-packets
255 tests_test_packets_SOURCES = tests/test-packets.c
256 tests_test_packets_LDADD = lib/libopenvswitch.la
257
258 noinst_PROGRAMS += tests/test-random
259 tests_test_random_SOURCES = tests/test-random.c
260 tests_test_random_LDADD = lib/libopenvswitch.la
261
262 noinst_PROGRAMS += tests/test-stp
263 tests_test_stp_SOURCES = tests/test-stp.c
264 tests_test_stp_LDADD = lib/libopenvswitch.la
265
266 noinst_PROGRAMS += tests/test-sflow
267 tests_test_sflow_SOURCES = tests/test-sflow.c
268 tests_test_sflow_LDADD = lib/libopenvswitch.la
269
270 noinst_PROGRAMS += tests/test-netflow
271 tests_test_netflow_SOURCES = tests/test-netflow.c
272 tests_test_netflow_LDADD = lib/libopenvswitch.la
273
274 noinst_PROGRAMS += tests/test-unix-socket
275 tests_test_unix_socket_SOURCES = tests/test-unix-socket.c
276 tests_test_unix_socket_LDADD = lib/libopenvswitch.la
277
278 noinst_PROGRAMS += tests/test-odp
279 tests_test_odp_SOURCES = tests/test-odp.c
280 tests_test_odp_LDADD = lib/libopenvswitch.la
281
282 noinst_PROGRAMS += tests/test-ovsdb
283 tests_test_ovsdb_SOURCES = \
284         tests/test-ovsdb.c \
285         tests/idltest.c \
286         tests/idltest.h
287 EXTRA_DIST += tests/uuidfilt.pl tests/ovsdb-monitor-sort.pl
288 tests_test_ovsdb_LDADD = ovsdb/libovsdb.la lib/libopenvswitch.la
289
290 # idltest schema and IDL
291 OVSIDL_BUILT += tests/idltest.c tests/idltest.h tests/idltest.ovsidl
292 IDLTEST_IDL_FILES = tests/idltest.ovsschema tests/idltest.ann
293 EXTRA_DIST += $(IDLTEST_IDL_FILES)
294 tests/idltest.ovsidl: $(IDLTEST_IDL_FILES)
295         $(OVSDB_IDLC) -C $(srcdir) annotate $(IDLTEST_IDL_FILES) > $@.tmp
296         mv $@.tmp $@
297
298 tests/idltest.c: tests/idltest.h
299
300 noinst_PROGRAMS += tests/test-reconnect
301 tests_test_reconnect_SOURCES = tests/test-reconnect.c
302 tests_test_reconnect_LDADD = lib/libopenvswitch.la
303
304 noinst_PROGRAMS += tests/test-sha1
305 tests_test_sha1_SOURCES = tests/test-sha1.c
306 tests_test_sha1_LDADD = lib/libopenvswitch.la
307
308 noinst_PROGRAMS += tests/test-strtok_r
309 tests_test_strtok_r_SOURCES = tests/test-strtok_r.c
310
311 noinst_PROGRAMS += tests/test-type-props
312 tests_test_type_props_SOURCES = tests/test-type-props.c
313
314 noinst_PROGRAMS += tests/test-util
315 tests_test_util_SOURCES = tests/test-util.c
316 tests_test_util_LDADD = lib/libopenvswitch.la
317
318 noinst_PROGRAMS += tests/test-uuid
319 tests_test_uuid_SOURCES = tests/test-uuid.c
320 tests_test_uuid_LDADD = lib/libopenvswitch.la
321
322 noinst_PROGRAMS += tests/test-vconn
323 tests_test_vconn_SOURCES = tests/test-vconn.c
324 tests_test_vconn_LDADD = lib/libopenvswitch.la
325
326 noinst_PROGRAMS += tests/test-byte-order
327 tests_test_byte_order_SOURCES = tests/test-byte-order.c
328 tests_test_byte_order_LDADD = lib/libopenvswitch.la
329
330 # Python tests.
331 CHECK_PYFILES = \
332         tests/appctl.py \
333         tests/test-daemon.py \
334         tests/test-json.py \
335         tests/test-jsonrpc.py \
336         tests/test-ovsdb.py \
337         tests/test-reconnect.py \
338         tests/MockXenAPI.py \
339         tests/test-unix-socket.py \
340         tests/test-unixctl.py \
341         tests/test-vlog.py
342 EXTRA_DIST += $(CHECK_PYFILES)
343 PYCOV_CLEAN_FILES += $(CHECK_PYFILES:.py=.py,cover) .coverage
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