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