c5e65fe66d6a4151c6d445bac9ab01b872160672
[dpdk.git] / app / 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_ticketlock.c',
111         'test_version.c',
112         'virtual_pmd.c'
113 )
114
115 test_deps = ['acl',
116         'bitratestats',
117         'bpf',
118         'cfgfile',
119         'cmdline',
120         'cryptodev',
121         'distributor',
122         'efd',
123         'ethdev',
124         'eventdev',
125         'flow_classify',
126         'hash',
127         'ipsec',
128         'latencystats',
129         'lpm',
130         'member',
131         'metrics',
132         'pipeline',
133         'port',
134         'reorder',
135         'ring',
136         'timer'
137 ]
138
139 # All test cases in fast_parallel_test_names list are parallel
140 fast_parallel_test_names = [
141         'acl_autotest',
142         'alarm_autotest',
143         'atomic_autotest',
144         'byteorder_autotest',
145         'cmdline_autotest',
146         'common_autotest',
147         'cpuflags_autotest',
148         'cycles_autotest',
149         'debug_autotest',
150         'eal_flags_autotest',
151         'eal_fs_autotest',
152         'errno_autotest',
153         'event_ring_autotest',
154         'func_reentrancy_autotest',
155         'flow_classify_autotest',
156         'hash_autotest',
157         'interrupt_autotest',
158         'logs_autotest',
159         'lpm_autotest',
160         'lpm6_autotest',
161         'malloc_autotest',
162         'mbuf_autotest',
163         'memcpy_autotest',
164         'memory_autotest',
165         'mempool_autotest',
166         'memzone_autotest',
167         'meter_autotest',
168         'multiprocess_autotest',
169         'per_lcore_autotest',
170         'prefetch_autotest',
171         'red_autotest',
172         'ring_autotest',
173         'ring_pmd_autotest',
174         'rwlock_autotest',
175         'sched_autotest',
176         'spinlock_autotest',
177         'string_autotest',
178         'table_autotest',
179         'tailq_autotest',
180         'timer_autotest',
181         'user_delay_us',
182         'version_autotest',
183 ]
184
185 # All test cases in fast_non_parallel_test_names list are non-parallel
186 fast_non_parallel_test_names = [
187         'bitratestats_autotest',
188         'cryptodev_sw_armv8_autotest',
189         'crc_autotest',
190         'cryptodev_openssl_asym_autotest',
191         'cryptodev_sw_mvsam_autotest',
192         'delay_us_sleep_autotest',
193         'devargs_autotest',
194         'distributor_autotest',
195         'eventdev_common_autotest',
196         'eventdev_octeontx_autotest',
197         'eventdev_sw_autotest',
198         'fbarray_autotest',
199         'hash_readwrite_autotest',
200         'hash_readwrite_lf_autotest',
201         'hash_scaling_autotest',
202         'ipsec_autotest',
203         'kni_autotest',
204         'kvargs_autotest',
205         'latencystats_autotest',
206         'member_autotest',
207         'metrics_autotest',
208         'pdump_autotest',
209         'power_acpi_cpufreq_autotest',
210         'power_autotest',
211         'power_kvm_vm_autotest',
212         'reorder_autotest',
213         'service_autotest',
214         'thash_autotest',
215 ]
216
217 # All test cases in perf_test_names list are non-parallel
218 perf_test_names = [
219         'ring_perf_autotest',
220         'mempool_perf_autotest',
221         'memcpy_perf_autotest',
222         'hash_perf_autotest',
223         'timer_perf_autotest',
224         'reciprocal_division',
225         'reciprocal_division_perf',
226         'lpm_perf_autotest',
227         'red_all',
228         'barrier_autotest',
229         'hash_multiwriter_autotest',
230         'timer_racecond_autotest',
231         'efd_autotest',
232         'hash_functions_autotest',
233         'eventdev_selftest_sw',
234         'member_perf_autotest',
235         'efd_perf_autotest',
236         'lpm6_perf_autotest',
237         'red_perf',
238         'distributor_perf_autotest',
239         'ring_pmd_perf_autotest',
240         'pmd_perf_autotest',
241 ]
242
243 # All test cases in driver_test_names list are non-parallel
244 driver_test_names = [
245         'link_bonding_autotest',
246         'link_bonding_mode4_autotest',
247         'link_bonding_rssconf_autotest',
248         'cryptodev_sw_mrvl_autotest',
249         'cryptodev_dpaa2_sec_autotest',
250         'cryptodev_dpaa_sec_autotest',
251         'cryptodev_qat_autotest',
252         'cryptodev_aesni_mb_autotest',
253         'cryptodev_openssl_autotest',
254         'cryptodev_scheduler_autotest',
255         'cryptodev_aesni_gcm_autotest',
256         'cryptodev_null_autotest',
257         'cryptodev_sw_snow3g_autotest',
258         'cryptodev_sw_kasumi_autotest',
259         'cryptodev_sw_zuc_autotest',
260 ]
261
262 # All test cases in dump_test_names list are non-parallel
263 dump_test_names = [
264         'dump_struct_sizes',
265         'dump_mempool',
266         'dump_malloc_stats',
267         'dump_devargs',
268         'dump_log_types',
269         'dump_ring',
270         'dump_physmem',
271         'dump_memzone',
272 ]
273
274 if dpdk_conf.has('RTE_LIBRTE_PDUMP')
275         test_deps += 'pdump'
276 endif
277 if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
278         test_deps += 'pmd_i40e'
279 endif
280 if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
281         test_deps += 'pmd_ixgbe'
282 endif
283 if dpdk_conf.has('RTE_LIBRTE_BOND_PMD')
284         test_deps += 'pmd_bond'
285 endif
286 if dpdk_conf.has('RTE_LIBRTE_RING_PMD')
287         test_deps += 'pmd_ring'
288 endif
289 if dpdk_conf.has('RTE_LIBRTE_POWER')
290         test_deps += 'power'
291 endif
292 if dpdk_conf.has('RTE_LIBRTE_KNI')
293         test_deps += 'kni'
294 endif
295
296 cflags = machine_args
297 if cc.has_argument('-Wno-format-truncation')
298     cflags += '-Wno-format-truncation'
299 endif
300
301 # specify -D_GNU_SOURCE unconditionally
302 cflags += '-D_GNU_SOURCE'
303
304 test_dep_objs = []
305 if dpdk_conf.has('RTE_LIBRTE_COMPRESSDEV')
306         compress_test_dep = dependency('zlib', required: false)
307         if compress_test_dep.found()
308                 test_dep_objs += compress_test_dep
309                 test_sources += 'test_compressdev.c'
310                 test_deps += 'compressdev'
311                 fast_non_parallel_test_names += 'compressdev_autotest'
312         endif
313 endif
314
315 foreach d:test_deps
316         def_lib = get_option('default_library')
317         test_dep_objs += get_variable(def_lib + '_rte_' + d)
318 endforeach
319 test_dep_objs += cc.find_library('execinfo', required: false)
320
321 link_libs = []
322 if get_option('default_library') == 'static'
323         link_libs = dpdk_drivers
324 endif
325
326 if get_option('tests')
327         dpdk_test = executable('dpdk-test',
328                 test_sources,
329                 link_whole: link_libs,
330                 dependencies: test_dep_objs,
331                 c_args: [cflags, '-DALLOW_EXPERIMENTAL_API'],
332                 install_rpath: driver_install_path,
333                 install: false)
334
335         # some perf tests (eg: memcpy perf autotest)take very long
336         # to complete, so timeout to 10 minutes
337         timeout_seconds = 600
338         timeout_seconds_fast = 10
339
340         foreach arg : fast_parallel_test_names
341                 test(arg, dpdk_test,
342                         env : ['DPDK_TEST=' + arg],
343                         args : ['-c f','-n 4', '--file-prefix=@0@'.format(arg)],
344                         timeout : timeout_seconds_fast,
345                         suite : 'fast-tests')
346         endforeach
347
348         foreach arg : fast_non_parallel_test_names
349                 test(arg, dpdk_test,
350                         env : ['DPDK_TEST=' + arg],
351                         timeout : timeout_seconds_fast,
352                         is_parallel : false,
353                         suite : 'fast-tests')
354         endforeach
355
356         foreach arg : perf_test_names
357                 test(arg, dpdk_test,
358                 env : ['DPDK_TEST=' + arg],
359                 timeout : timeout_seconds,
360                 is_parallel : false,
361                 suite : 'perf-tests')
362         endforeach
363
364         foreach arg : driver_test_names
365                 test(arg, dpdk_test,
366                         env : ['DPDK_TEST=' + arg],
367                         timeout : timeout_seconds,
368                         is_parallel : false,
369                         suite : 'driver-tests')
370         endforeach
371
372         foreach arg : dump_test_names
373                 test(arg, dpdk_test,
374                         env : ['DPDK_TEST=' + arg],
375                         timeout : timeout_seconds,
376                         is_parallel : false,
377                         suite : 'debug-tests')
378         endforeach
379 endif