test/pdump: add unit test for pdump library
[dpdk.git] / test / test / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 test_sources = files('commands.c',
5         'packet_burst_generator.c',
6         'sample_packet_forward.c',
7         'test.c',
8         'test_acl.c',
9         'test_alarm.c',
10         'test_atomic.c',
11         'test_barrier.c',
12         'test_bitratestats.c',
13         'test_bpf.c',
14         'test_byteorder.c',
15         'test_cmdline.c',
16         'test_cmdline_cirbuf.c',
17         'test_cmdline_etheraddr.c',
18         'test_cmdline_ipaddr.c',
19         'test_cmdline_lib.c',
20         'test_cmdline_num.c',
21         'test_cmdline_portlist.c',
22         'test_cmdline_string.c',
23         'test_common.c',
24         'test_cpuflags.c',
25         'test_crc.c',
26         'test_cryptodev.c',
27         'test_cryptodev_asym.c',
28         'test_cryptodev_blockcipher.c',
29         'test_cycles.c',
30         'test_debug.c',
31         'test_distributor.c',
32         'test_distributor_perf.c',
33         'test_eal_flags.c',
34         'test_eal_fs.c',
35         'test_efd.c',
36         'test_efd_perf.c',
37         'test_errno.c',
38         'test_event_crypto_adapter.c',
39         'test_event_eth_rx_adapter.c',
40         'test_event_ring.c',
41         'test_event_eth_tx_adapter.c',
42         'test_event_timer_adapter.c',
43         'test_eventdev.c',
44         'test_external_mem.c',
45         'test_fbarray.c',
46         'test_func_reentrancy.c',
47         'test_flow_classify.c',
48         'test_hash.c',
49         'test_hash_functions.c',
50         'test_hash_multiwriter.c',
51         'test_hash_readwrite.c',
52         'test_hash_perf.c',
53         'test_hash_readwrite_lf.c',
54         'test_interrupts.c',
55         'test_ipsec.c',
56         'test_kni.c',
57         'test_kvargs.c',
58         'test_latencystats.c',
59         'test_link_bonding.c',
60         'test_link_bonding_mode4.c',
61         'test_logs.c',
62         'test_lpm.c',
63         'test_lpm6.c',
64         'test_lpm6_perf.c',
65         'test_lpm_perf.c',
66         'test_malloc.c',
67         'test_mbuf.c',
68         'test_member.c',
69         'test_member_perf.c',
70         'test_memcpy.c',
71         'test_memcpy_perf.c',
72         'test_memory.c',
73         'test_mempool.c',
74         'test_mempool_perf.c',
75         'test_memzone.c',
76         'test_meter.c',
77         'test_metrics.c',
78         'test_mp_secondary.c',
79         'test_pdump.c',
80         'test_per_lcore.c',
81         'test_pmd_perf.c',
82         'test_pmd_ring.c',
83         'test_pmd_ring_perf.c',
84         'test_power.c',
85         'test_power_acpi_cpufreq.c',
86         'test_power_kvm_vm.c',
87         'test_prefetch.c',
88         'test_reciprocal_division.c',
89         'test_reciprocal_division_perf.c',
90         'test_red.c',
91         'test_reorder.c',
92         'test_ring.c',
93         'test_ring_perf.c',
94         'test_rwlock.c',
95         'test_sched.c',
96         'test_service_cores.c',
97         'test_spinlock.c',
98         'test_string_fns.c',
99         'test_table.c',
100         'test_table_acl.c',
101         'test_table_combined.c',
102         'test_table_pipeline.c',
103         'test_table_ports.c',
104         'test_table_tables.c',
105         'test_tailq.c',
106         'test_thash.c',
107         'test_timer.c',
108         'test_timer_perf.c',
109         'test_timer_racecond.c',
110         'test_version.c',
111         'virtual_pmd.c'
112 )
113
114 test_deps = ['acl',
115         'bitratestats',
116         'bpf',
117         'cfgfile',
118         'cmdline',
119         'cryptodev',
120         'distributor',
121         'efd',
122         'ethdev',
123         'eventdev',
124         'flow_classify',
125         'hash',
126         'ipsec',
127         'latencystats',
128         'lpm',
129         'member',
130         'metrics',
131         'pipeline',
132         'port',
133         'reorder',
134         'ring',
135         'timer'
136 ]
137
138 test_names = [
139         'acl_autotest',
140         'alarm_autotest',
141         'atomic_autotest',
142         'barrier_autotest',
143         'bitratestats_autotest',
144         'byteorder_autotest',
145         'cmdline_autotest',
146         'common_autotest',
147         'cpuflags_autotest',
148         'crc_autotest',
149         'cryptodev_qat_autotest',
150         'cryptodev_aesni_mb_autotest',
151         'cryptodev_openssl_autotest',
152         'cryptodev_openssl_asym_autotest',
153         'cryptodev_aesni_gcm_autotest',
154         'cryptodev_null_autotest',
155         'cryptodev_sw_snow3g_autotest',
156         'cryptodev_sw_kasumi_autotest',
157         'cryptodev_sw_zuc_autotest',
158         'cryptodev_sw_armv8_autotest',
159         'cryptodev_sw_mvsam_autotest',
160         'cryptodev_dpaa2_sec_autotest',
161         'cryptodev_dpaa_sec_autotest',
162         'cryptodev_octeontx_autotest',
163         'cycles_autotest',
164         'debug_autotest',
165         'delay_us_sleep_autotest',
166         'devargs_autotest',
167         'distributor_autotest',
168         'distributor_perf_autotest',
169         'eal_flags_autotest',
170         'eal_fs_autotest',
171         'efd_autotest',
172         'efd_perf_autotest',
173         'errno_autotest',
174         'event_crypto_adapter_autotest',
175         'event_eth_rx_adapter_autotest',
176         'event_eth_rx_intr_adapter_autotest',
177         'event_ring_autotest',
178         'event_eth_tx_adapter_autotest',
179         'event_timer_adapter_autotest',
180         'eventdev_common_autotest',
181         'eventdev_octeontx_autotest',
182         'eventdev_sw_autotest',
183         'external_mem_autotest',
184         'fbarray_autotest',
185         'func_reentrancy_autotest',
186         'flow_classify_autotest',
187         'hash_autotest',
188         'hash_functions_autotest',
189         'hash_multiwriter_autotest',
190         'hash_perf_autotest',
191         'hash_readwrite_autotest',
192         'hash_readwrite_lf_autotest',
193         'interrupt_autotest',
194         'ipsec_autotest',
195         'kni_autotest',
196         'kvargs_autotest',
197         'latencystats_autotest',
198         'link_bonding_autotest',
199         'link_bonding_mode4_autotest',
200         'logs_autotest',
201         'lpm6_autotest',
202         'lpm6_perf_autotest',
203         'lpm_autotest',
204         'lpm_perf_autotest',
205         'malloc_autotest',
206         'mbuf_autotest',
207         'member_autotest',
208         'member_perf_autotest',
209         'memcpy_autotest',
210         'memcpy_perf_autotest',
211         'memory_autotest',
212         'mempool_autotest',
213         'mempool_perf_autotest',
214         'memzone_autotest',
215         'meter_autotest',
216         'metrics_autotest',
217         'multiprocess_autotest',
218         'pdump_autotest',
219         'per_lcore_autotest',
220         'pmd_perf_autotest',
221         'power_acpi_cpufreq_autotest',
222         'power_autotest',
223         'power_kvm_vm_autotest',
224         'prefetch_autotest',
225         'reciprocal_division',
226         'reciprocal_division_perf',
227         'red_all',
228         'red_autotest',
229         'red_perf',
230         'reorder_autotest',
231         'ring_autotest',
232         'ring_perf_autotest',
233         'ring_pmd_autotest',
234         'ring_pmd_perf_autotest',
235         'rwlock_autotest',
236         'sched_autotest',
237         'service_autotest',
238         'spinlock_autotest',
239         'string_autotest',
240         'table_autotest',
241         'tailq_autotest',
242         'thash_autotest',
243         'timer_autotest',
244         'timer_perf__autotest',
245         'timer_racecond_autotest',
246         'user_delay_us',
247         'version_autotest',
248 ]
249
250 if dpdk_conf.has('RTE_LIBRTE_PDUMP')
251         test_deps += 'pdump'
252 endif
253 if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
254         test_deps += 'pmd_i40e'
255 endif
256 if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
257         test_deps += 'pmd_ixgbe'
258 endif
259 if dpdk_conf.has('RTE_LIBRTE_BOND_PMD')
260         test_deps += 'pmd_bond'
261 endif
262 if dpdk_conf.has('RTE_LIBRTE_RING_PMD')
263         test_deps += 'pmd_ring'
264 endif
265 if dpdk_conf.has('RTE_LIBRTE_POWER')
266         test_deps += 'power'
267 endif
268 if dpdk_conf.has('RTE_LIBRTE_KNI')
269         test_deps += 'kni'
270 endif
271
272 cflags = machine_args
273 if cc.has_argument('-Wno-format-truncation')
274     cflags += '-Wno-format-truncation'
275 endif
276
277 # specify -D_GNU_SOURCE unconditionally
278 default_cflags += '-D_GNU_SOURCE'
279
280 test_dep_objs = []
281 compress_test_dep = dependency('zlib', required: false)
282 if compress_test_dep.found()
283         test_dep_objs += compress_test_dep
284         test_sources += 'test_compressdev.c'
285         test_deps += 'compressdev'
286         test_names += 'compressdev_autotest'
287 endif
288
289 foreach d:test_deps
290         def_lib = get_option('default_library')
291         test_dep_objs += get_variable(def_lib + '_rte_' + d)
292 endforeach
293 test_dep_objs += cc.find_library('execinfo', required: false)
294
295 link_libs = []
296 if get_option('default_library') == 'static'
297         link_libs = dpdk_drivers
298 endif
299
300 if get_option('tests')
301         dpdk_test = executable('dpdk-test',
302                 test_sources,
303                 link_whole: link_libs,
304                 dependencies: test_dep_objs,
305                 c_args: [cflags, '-DALLOW_EXPERIMENTAL_API'],
306                 install_rpath: driver_install_path,
307                 install: false)
308
309         # some perf tests (eg: memcpy perf autotest)take very long
310         # to complete, so timeout to 10 minutes
311         timeout_seconds = 600
312
313         foreach t:test_names
314                 test(t, dpdk_test,
315                         env : ['DPDK_TEST='+t],
316                         timeout : timeout_seconds,
317                         is_parallel : false)
318         endforeach
319 endif