ovsdb: Add tests for file storage and for ovsdb-server.
[openvswitch] / 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/lcov-pre.at \
10         tests/library.at \
11         tests/dir_name.at \
12         tests/aes128.at \
13         tests/uuid.at \
14         tests/json.at \
15         tests/jsonrpc.at \
16         tests/timeval.at \
17         tests/lockfile.at \
18         tests/reconnect.at \
19         tests/ovsdb.at \
20         tests/ovsdb-log.at \
21         tests/ovsdb-types.at \
22         tests/ovsdb-data.at \
23         tests/ovsdb-column.at \
24         tests/ovsdb-table.at \
25         tests/ovsdb-row.at \
26         tests/ovsdb-condition.at \
27         tests/ovsdb-query.at \
28         tests/ovsdb-transaction.at \
29         tests/ovsdb-execution.at \
30         tests/ovsdb-trigger.at \
31         tests/ovsdb-file.at \
32         tests/ovsdb-server.at \
33         tests/stp.at \
34         tests/ovs-vsctl.at \
35         tests/lcov-post.at
36 TESTSUITE = $(srcdir)/tests/testsuite
37 DISTCLEANFILES += tests/atconfig tests/atlocal $(TESTSUITE)
38
39 check-local: tests/atconfig tests/atlocal $(TESTSUITE)
40         $(SHELL) '$(TESTSUITE)' -C tests AUTOTEST_PATH='utilities:vswitchd:ovsdb:tests' $(TESTSUITEFLAGS)
41
42 clean-local:
43         test ! -f '$(TESTSUITE)' || $(SHELL) '$(TESTSUITE)' -C tests --clean
44
45 AUTOM4TE = autom4te
46 AUTOTEST = $(AUTOM4TE) --language=autotest
47 $(TESTSUITE): package.m4 $(TESTSUITE_AT)
48         $(AUTOTEST) -I '$(srcdir)' -o $@.tmp $@.at
49         mv $@.tmp $@
50
51 # The `:;' works around a Bash 3.2 bug when the output is not writeable.
52 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
53         :;{ \
54           echo '# Signature of the current package.' && \
55           echo 'm4_define([AT_PACKAGE_NAME],      [@PACKAGE_NAME@])' && \
56           echo 'm4_define([AT_PACKAGE_TARNAME],   [@PACKAGE_TARNAME@])' && \
57           echo 'm4_define([AT_PACKAGE_VERSION],   [@PACKAGE_VERSION@])' && \
58           echo 'm4_define([AT_PACKAGE_STRING],    [@PACKAGE_STRING@])' && \
59           echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
60         } >'$(srcdir)/package.m4'
61
62 noinst_PROGRAMS += tests/test-aes128
63 tests_test_aes128_SOURCES = tests/test-aes128.c
64 tests_test_aes128_LDADD = lib/libopenvswitch.a
65
66 noinst_PROGRAMS += tests/test-classifier
67 tests_test_classifier_SOURCES = tests/test-classifier.c
68 tests_test_classifier_LDADD = lib/libopenvswitch.a
69
70 noinst_PROGRAMS += tests/test-csum
71 tests_test_csum_SOURCES = tests/test-csum.c
72 tests_test_csum_LDADD = lib/libopenvswitch.a
73
74 noinst_PROGRAMS += tests/test-dir_name
75 tests_test_dir_name_SOURCES = tests/test-dir_name.c
76 tests_test_dir_name_LDADD = lib/libopenvswitch.a
77
78 noinst_PROGRAMS += tests/test-flows
79 tests_test_flows_SOURCES = tests/test-flows.c
80 tests_test_flows_LDADD = lib/libopenvswitch.a
81 dist_check_SCRIPTS = tests/flowgen.pl
82
83 noinst_PROGRAMS += tests/test-hash
84 tests_test_hash_SOURCES = tests/test-hash.c
85 tests_test_hash_LDADD = lib/libopenvswitch.a
86
87 noinst_PROGRAMS += tests/test-hmap
88 tests_test_hmap_SOURCES = tests/test-hmap.c
89 tests_test_hmap_LDADD = lib/libopenvswitch.a
90
91 noinst_PROGRAMS += tests/test-json
92 tests_test_json_SOURCES = tests/test-json.c
93 tests_test_json_LDADD = lib/libopenvswitch.a
94
95 noinst_PROGRAMS += tests/test-jsonrpc
96 tests_test_jsonrpc_SOURCES = tests/test-jsonrpc.c
97 tests_test_jsonrpc_LDADD = lib/libopenvswitch.a
98
99 noinst_PROGRAMS += tests/test-list
100 tests_test_list_SOURCES = tests/test-list.c
101 tests_test_list_LDADD = lib/libopenvswitch.a
102
103 noinst_PROGRAMS += tests/test-lockfile
104 tests_test_lockfile_SOURCES = tests/test-lockfile.c
105 tests_test_lockfile_LDADD = lib/libopenvswitch.a
106
107 noinst_PROGRAMS += tests/test-ovsdb
108 tests_test_ovsdb_SOURCES = tests/test-ovsdb.c
109 tests_test_ovsdb_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a
110 EXTRA_DIST += tests/uuidfilt.pl
111
112 noinst_PROGRAMS += tests/test-reconnect
113 tests_test_reconnect_SOURCES = tests/test-reconnect.c
114 tests_test_reconnect_LDADD = lib/libopenvswitch.a
115
116 noinst_PROGRAMS += tests/test-sha1
117 tests_test_sha1_SOURCES = tests/test-sha1.c
118 tests_test_sha1_LDADD = lib/libopenvswitch.a
119
120 noinst_PROGRAMS += tests/test-timeval
121 tests_test_timeval_SOURCES = tests/test-timeval.c
122 tests_test_timeval_LDADD = lib/libopenvswitch.a
123
124 noinst_PROGRAMS += tests/test-type-props
125 tests_test_type_props_SOURCES = tests/test-type-props.c
126
127 noinst_PROGRAMS += tests/test-dhcp-client
128 tests_test_dhcp_client_SOURCES = tests/test-dhcp-client.c
129 tests_test_dhcp_client_LDADD = lib/libopenvswitch.a $(FAULT_LIBS)
130
131 noinst_PROGRAMS += tests/test-stp
132 tests_test_stp_SOURCES = tests/test-stp.c
133 tests_test_stp_LDADD = lib/libopenvswitch.a
134
135 noinst_PROGRAMS += tests/test-uuid
136 tests_test_uuid_SOURCES = tests/test-uuid.c
137 tests_test_uuid_LDADD = lib/libopenvswitch.a
138
139 noinst_PROGRAMS += tests/test-vconn
140 tests_test_vconn_SOURCES = tests/test-vconn.c
141 tests_test_vconn_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
142