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