blob: 533bacd6f63db790547553369e48fac87afb036a [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001# Copyright (c) 2015 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
Damjan Marion724f64c2017-01-11 11:11:00 +010014lib_LTLIBRARIES += libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +010015
16TESTS =
17
18if ENABLE_TESTS
19TESTS += test_bihash_template \
20 test_dlist \
21 test_elog \
22 test_elf \
23 test_fifo \
24 test_format \
25 test_hash \
26 test_heap \
27 test_longjmp \
28 test_macros \
29 test_md5 \
30 test_mheap \
31 test_pool_iterate \
32 test_ptclosure \
33 test_random \
34 test_random_isaac \
35 test_serialize \
36 test_slist \
37 test_socket \
38 test_time \
39 test_timing_wheel \
Dave Barach8e8f98c2017-02-03 11:58:53 -050040 test_tw_timer \
Damjan Marion7cd468a2016-12-19 23:05:39 +010041 test_vec \
Neale Ranns32e1c012016-11-22 17:07:28 +000042 test_zvec
Damjan Marion7cd468a2016-12-19 23:05:39 +010043endif
44
Dave Barach908a5ea2017-07-14 12:42:21 -040045TESTS += test_bihash_template
46
Damjan Marion7cd468a2016-12-19 23:05:39 +010047noinst_PROGRAMS = $(TESTS)
48check_PROGRAMS = $(TESTS)
49
50test_bihash_template_SOURCES = vppinfra/test_bihash_template.c
51test_dlist_SOURCES = vppinfra/test_dlist.c
52test_elog_SOURCES = vppinfra/test_elog.c
53test_elf_SOURCES = vppinfra/test_elf.c
54test_fifo_SOURCES = vppinfra/test_fifo.c
55test_format_SOURCES = vppinfra/test_format.c
56test_hash_SOURCES = vppinfra/test_hash.c
57test_heap_SOURCES = vppinfra/test_heap.c
58test_longjmp_SOURCES = vppinfra/test_longjmp.c
59test_macros_SOURCES = vppinfra/test_macros.c
60test_md5_SOURCES = vppinfra/test_md5.c
61test_mheap_SOURCES = vppinfra/test_mheap.c
62test_pool_iterate_SOURCES = vppinfra/test_pool_iterate.c
63test_ptclosure_SOURCES = vppinfra/test_ptclosure.c
64test_random_SOURCES = vppinfra/test_random.c
65test_random_isaac_SOURCES = vppinfra/test_random_isaac.c
66test_serialize_SOURCES = vppinfra/test_serialize.c
67test_slist_SOURCES = vppinfra/test_slist.c
68test_socket_SOURCES = vppinfra/test_socket.c
69test_time_SOURCES = vppinfra/test_time.c
70test_timing_wheel_SOURCES = vppinfra/test_timing_wheel.c
Dave Barach8e8f98c2017-02-03 11:58:53 -050071test_tw_timer_SOURCES = vppinfra/test_tw_timer.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010072test_vec_SOURCES = vppinfra/test_vec.c
73test_zvec_SOURCES = vppinfra/test_zvec.c
74
75# All unit tests use ASSERT for failure
76# So we'll need -DDEBUG to enable ASSERTs
77test_bihash_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
78test_dlist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
79test_elog_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
80test_elf_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
81test_fifo_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
82test_format_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
83test_hash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
84test_heap_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
85test_longjmp_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
86test_macros_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
87test_md5_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
88test_mheap_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
89test_pool_iterate_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
90test_ptclosure_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
91test_random_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
92test_random_isaac_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
93test_socket_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
94test_serialize_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
95test_slist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
96test_time_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
97test_timing_wheel_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach8e8f98c2017-02-03 11:58:53 -050098test_tw_timer_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010099test_vec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
100test_zvec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
101
102test_bihash_template_LDADD = libvppinfra.la
103test_dlist_LDADD = libvppinfra.la
104test_elog_LDADD = libvppinfra.la
105test_elf_LDADD = libvppinfra.la
106test_fifo_LDADD = libvppinfra.la
107test_format_LDADD = libvppinfra.la
108test_hash_LDADD = libvppinfra.la
109test_heap_LDADD = libvppinfra.la
110test_longjmp_LDADD = libvppinfra.la
111test_macros_LDADD = libvppinfra.la
112test_md5_LDADD = libvppinfra.la
113test_mheap_LDADD = libvppinfra.la
114test_pool_iterate_LDADD = libvppinfra.la
115test_ptclosure_LDADD = libvppinfra.la
116test_random_LDADD = libvppinfra.la
117test_random_isaac_LDADD = libvppinfra.la
118test_serialize_LDADD = libvppinfra.la
119test_slist_LDADD = libvppinfra.la
120test_socket_LDADD = libvppinfra.la
121test_time_LDADD = libvppinfra.la -lm
122test_timing_wheel_LDADD = libvppinfra.la -lm
Dave Barach8e8f98c2017-02-03 11:58:53 -0500123test_tw_timer_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100124test_vec_LDADD = libvppinfra.la
125test_zvec_LDADD = libvppinfra.la
126
127test_bihash_template_LDFLAGS = -static
128test_dlist_LDFLAGS = -static
129test_elog_LDFLAGS = -static
130test_elf_LDFLAGS = -static
131test_fifo_LDFLAGS = -static
132test_format_LDFLAGS = -static
133test_hash_LDFLAGS = -static
134test_heap_LDFLAGS = -static
135test_longjmp_LDFLAGS = -static
136test_macros_LDFLAGS = -static
137test_md5_LDFLAGS = -static
138test_mheap_LDFLAGS = -static
139test_pool_iterate_LDFLAGS = -static
140test_ptclosure_LDFLAGS = -static
141test_random_LDFLAGS = -static
142test_random_isaac_LDFLAGS = -static
143test_serialize_LDFLAGS = -static
144test_slist_LDFLAGS = -static
145test_socket_LDFLAGS = -static
146test_time_LDFLAGS = -static
147test_timing_wheel_LDFLAGS = -static
Dave Barach8e8f98c2017-02-03 11:58:53 -0500148test_tw_timer_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100149test_vec_LDFLAGS = -static
150test_zvec_LDFLAGS = -static
151
152# noinst_PROGRAMS += test_vhash
153# test_vhash_SOURCES = vppinfra/test_vhash.c vppinfra/vhash.c
154# test_vhash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
155# test_vhash_LDADD = libvppinfra.la
156# test_vhash_LDFLAGS = -static
157
158nobase_include_HEADERS = \
159 vppinfra/asm_mips.h \
160 vppinfra/asm_x86.h \
161 vppinfra/bihash_8_8.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500162 vppinfra/bihash_16_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100163 vppinfra/bihash_24_8.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500164 vppinfra/bihash_48_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100165 vppinfra/bihash_template.h \
166 vppinfra/bihash_template.c \
167 vppinfra/bitmap.h \
168 vppinfra/bitops.h \
169 vppinfra/byte_order.h \
170 vppinfra/cache.h \
171 vppinfra/clib.h \
Klement Sekera58eb8662017-06-09 06:06:49 +0200172 vppinfra/clib_error.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100173 vppinfra/cpu.h \
Damjan Marion0f68c792017-04-26 13:05:05 +0200174 vppinfra/crc32.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100175 vppinfra/dlist.h \
176 vppinfra/elf.h \
177 vppinfra/elf_clib.h \
178 vppinfra/elog.h \
179 vppinfra/fheap.h \
180 vppinfra/error.h \
181 vppinfra/error_bootstrap.h \
182 vppinfra/fifo.h \
183 vppinfra/format.h \
184 vppinfra/graph.h \
185 vppinfra/hash.h \
186 vppinfra/heap.h \
Damjan Marion1927da22017-03-27 17:08:20 +0200187 vppinfra/lock.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100188 vppinfra/longjmp.h \
189 vppinfra/macros.h \
190 vppinfra/math.h \
191 vppinfra/md5.h \
192 vppinfra/mem.h \
193 vppinfra/memcpy_sse3.h \
194 vppinfra/memcpy_avx.h \
195 vppinfra/mhash.h \
196 vppinfra/mheap.h \
197 vppinfra/mheap_bootstrap.h \
198 vppinfra/os.h \
199 vppinfra/pipeline.h \
200 vppinfra/pool.h \
201 vppinfra/ptclosure.h \
202 vppinfra/random.h \
203 vppinfra/random_buffer.h \
204 vppinfra/random_isaac.h \
205 vppinfra/serialize.h \
206 vppinfra/slist.h \
207 vppinfra/smp.h \
208 vppinfra/socket.h \
209 vppinfra/sparse_vec.h \
210 vppinfra/string.h \
211 vppinfra/time.h \
212 vppinfra/timing_wheel.h \
213 vppinfra/timer.h \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500214 vppinfra/tw_timer_2t_1w_2048sl.h \
215 vppinfra/tw_timer_16t_2w_512sl.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500216 vppinfra/tw_timer_16t_1w_2048sl.h \
Dave Barach4af9ba12017-06-07 15:18:23 -0400217 vppinfra/tw_timer_4t_3w_256sl.h \
218 vppinfra/tw_timer_1t_3w_1024sl_ov.h \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500219 vppinfra/tw_timer_template.h \
Gabriel Ganne613c79f2017-02-15 11:37:53 +0100220 vppinfra/tw_timer_template.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100221 vppinfra/types.h \
222 vppinfra/unix.h \
223 vppinfra/vec.h \
224 vppinfra/vec_bootstrap.h \
225 vppinfra/vector.h \
226 vppinfra/vector_altivec.h \
227 vppinfra/vector_funcs.h \
228 vppinfra/vector_iwmmxt.h \
229 vppinfra/vector_neon.h \
230 vppinfra/vector_sse2.h \
231 vppinfra/valgrind.h \
232 vppinfra/vm_unix.h \
233 vppinfra/xxhash.h \
234 vppinfra/xy.h \
235 vppinfra/zvec.h
236
237CLIB_CORE = \
238 vppinfra/asm_x86.c \
239 vppinfra/backtrace.c \
240 vppinfra/bihash_8_8.h \
241 vppinfra/bihash_24_8.h \
242 vppinfra/bihash_template.h \
243 vppinfra/cpu.c \
244 vppinfra/elf.c \
245 vppinfra/elog.c \
246 vppinfra/error.c \
247 vppinfra/fifo.c \
248 vppinfra/fheap.c \
249 vppinfra/format.c \
250 vppinfra/graph.c \
251 vppinfra/hash.c \
252 vppinfra/heap.c \
253 vppinfra/longjmp.S \
254 vppinfra/macros.c \
255 vppinfra/mhash.c \
256 vppinfra/mheap.c \
257 vppinfra/md5.c \
258 vppinfra/mem_mheap.c \
259 vppinfra/ptclosure.c \
260 vppinfra/random.c \
261 vppinfra/random_buffer.c \
262 vppinfra/random_isaac.c \
263 vppinfra/serialize.c \
264 vppinfra/slist.c \
265 vppinfra/std-formats.c \
266 vppinfra/string.c \
267 vppinfra/time.c \
268 vppinfra/timing_wheel.c \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500269 vppinfra/tw_timer_template.h \
270 vppinfra/tw_timer_2t_1w_2048sl.h \
271 vppinfra/tw_timer_2t_1w_2048sl.c \
272 vppinfra/tw_timer_16t_2w_512sl.h \
273 vppinfra/tw_timer_16t_2w_512sl.c \
Dave Barach68b0fb02017-02-28 15:15:56 -0500274 vppinfra/tw_timer_16t_1w_2048sl.h \
275 vppinfra/tw_timer_16t_1w_2048sl.c \
Dave Barach4af9ba12017-06-07 15:18:23 -0400276 vppinfra/tw_timer_4t_3w_256sl.h \
277 vppinfra/tw_timer_4t_3w_256sl.c \
278 vppinfra/tw_timer_1t_3w_1024sl_ov.h \
279 vppinfra/tw_timer_1t_3w_1024sl_ov.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100280 vppinfra/unformat.c \
281 vppinfra/vec.c \
282 vppinfra/vector.c \
283 vppinfra/zvec.c
284
285# Core plus Unix additions
286libvppinfra_la_SOURCES = \
287 $(CLIB_CORE) \
288 vppinfra/elf_clib.c \
289 vppinfra/socket.c \
290 vppinfra/timer.c \
291 vppinfra/unix-formats.c \
292 vppinfra/unix-misc.c
293
294bin_PROGRAMS = elftool
295
296elftool_SOURCES = tools/elftool/elftool.c
297elftool_CPPFLAGS = $(AM_CPPFLAGS)
298elftool_LDADD = libvppinfra.la -lpthread -lrt -lm
299
300# vi:syntax=automake