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