common/cnxk: support timestamp PKIND in CPT
[dpdk.git] / app / test / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 if not get_option('tests')
5     subdir_done()
6 endif
7
8 test_sources = files(
9         'commands.c',
10         'packet_burst_generator.c',
11         'test.c',
12         'test_acl.c',
13         'test_alarm.c',
14         'test_atomic.c',
15         'test_barrier.c',
16         'test_bitops.c',
17         'test_bitmap.c',
18         'test_bpf.c',
19         'test_byteorder.c',
20         'test_cksum.c',
21         'test_cmdline.c',
22         'test_cmdline_cirbuf.c',
23         'test_cmdline_etheraddr.c',
24         'test_cmdline_ipaddr.c',
25         'test_cmdline_lib.c',
26         'test_cmdline_num.c',
27         'test_cmdline_portlist.c',
28         'test_cmdline_string.c',
29         'test_common.c',
30         'test_cpuflags.c',
31         'test_crc.c',
32         'test_cryptodev.c',
33         'test_cryptodev_asym.c',
34         'test_cryptodev_blockcipher.c',
35         'test_cryptodev_security_ipsec.c',
36         'test_cryptodev_security_pdcp.c',
37         'test_cycles.c',
38         'test_debug.c',
39         'test_devargs.c',
40         'test_distributor.c',
41         'test_distributor_perf.c',
42         'test_dmadev.c',
43         'test_dmadev_api.c',
44         'test_eal_flags.c',
45         'test_eal_fs.c',
46         'test_efd.c',
47         'test_efd_perf.c',
48         'test_errno.c',
49         'test_ethdev_link.c',
50         'test_event_crypto_adapter.c',
51         'test_event_eth_rx_adapter.c',
52         'test_event_ring.c',
53         'test_event_timer_adapter.c',
54         'test_eventdev.c',
55         'test_external_mem.c',
56         'test_fbarray.c',
57         'test_fib.c',
58         'test_fib_perf.c',
59         'test_fib6.c',
60         'test_fib6_perf.c',
61         'test_func_reentrancy.c',
62         'test_graph.c',
63         'test_graph_perf.c',
64         'test_hash.c',
65         'test_hash_functions.c',
66         'test_hash_multiwriter.c',
67         'test_hash_readwrite.c',
68         'test_hash_perf.c',
69         'test_hash_readwrite_lf_perf.c',
70         'test_interrupts.c',
71         'test_ipfrag.c',
72         'test_ipsec.c',
73         'test_ipsec_sad.c',
74         'test_ipsec_perf.c',
75         'test_kni.c',
76         'test_kvargs.c',
77         'test_lcores.c',
78         'test_logs.c',
79         'test_lpm.c',
80         'test_lpm6.c',
81         'test_lpm6_perf.c',
82         'test_lpm_perf.c',
83         'test_malloc.c',
84         'test_malloc_perf.c',
85         'test_mbuf.c',
86         'test_member.c',
87         'test_member_perf.c',
88         'test_memcpy.c',
89         'test_memcpy_perf.c',
90         'test_memory.c',
91         'test_mempool.c',
92         'test_mempool_perf.c',
93         'test_memzone.c',
94         'test_meter.c',
95         'test_mcslock.c',
96         'test_mp_secondary.c',
97         'test_per_lcore.c',
98         'test_pflock.c',
99         'test_pmd_perf.c',
100         'test_power.c',
101         'test_power_cpufreq.c',
102         'test_power_kvm_vm.c',
103         'test_prefetch.c',
104         'test_rand_perf.c',
105         'test_rawdev.c',
106         'test_rcu_qsbr.c',
107         'test_rcu_qsbr_perf.c',
108         'test_reciprocal_division.c',
109         'test_reciprocal_division_perf.c',
110         'test_red.c',
111         'test_pie.c',
112         'test_reorder.c',
113         'test_rib.c',
114         'test_rib6.c',
115         'test_ring.c',
116         'test_ring_mpmc_stress.c',
117         'test_ring_hts_stress.c',
118         'test_ring_mt_peek_stress.c',
119         'test_ring_mt_peek_stress_zc.c',
120         'test_ring_perf.c',
121         'test_ring_rts_stress.c',
122         'test_ring_st_peek_stress.c',
123         'test_ring_st_peek_stress_zc.c',
124         'test_ring_stress.c',
125         'test_rwlock.c',
126         'test_sched.c',
127         'test_security.c',
128         'test_service_cores.c',
129         'test_spinlock.c',
130         'test_stack.c',
131         'test_stack_perf.c',
132         'test_string_fns.c',
133         'test_tailq.c',
134         'test_thash.c',
135         'test_thash_perf.c',
136         'test_timer.c',
137         'test_timer_perf.c',
138         'test_timer_racecond.c',
139         'test_timer_secondary.c',
140         'test_ticketlock.c',
141         'test_trace.c',
142         'test_trace_register.c',
143         'test_trace_perf.c',
144         'test_version.c',
145         'virtual_pmd.c',
146 )
147
148 test_deps = enabled_libs
149 # as well as libs, the pci and vdev bus drivers are needed for a lot of tests
150 test_deps += ['bus_pci', 'bus_vdev']
151
152 # Each test is marked with flags:
153 # - the first flag indicates whether the test can run in no-huge mode,
154 # - the second flag indicates whether the test can run with ASan enabled,
155 fast_tests = [
156         ['acl_autotest', true, true],
157         ['atomic_autotest', false, true],
158         ['bitmap_autotest', true, true],
159         ['bpf_autotest', true, true],
160         ['bpf_convert_autotest', true, true],
161         ['bitops_autotest', true, true],
162         ['byteorder_autotest', true, true],
163         ['cksum_autotest', true, true],
164         ['cmdline_autotest', true, true],
165         ['common_autotest', true, true],
166         ['cpuflags_autotest', true, true],
167         ['debug_autotest', true, true],
168         ['devargs_autotest', true, true],
169         ['eal_flags_c_opt_autotest', false, false],
170         ['eal_flags_main_opt_autotest', false, false],
171         ['eal_flags_n_opt_autotest', false, false],
172         ['eal_flags_hpet_autotest', false, false],
173         ['eal_flags_no_huge_autotest', false, false],
174         ['eal_flags_a_opt_autotest', false, false],
175         ['eal_flags_b_opt_autotest', false, false],
176         ['eal_flags_vdev_opt_autotest', false, false],
177         ['eal_flags_r_opt_autotest', false, false],
178         ['eal_flags_mem_autotest', false, false],
179         ['eal_flags_file_prefix_autotest', false, false],
180         ['eal_flags_misc_autotest', false, false],
181         ['eal_fs_autotest', true, true],
182         ['errno_autotest', true, true],
183         ['ethdev_link_status', true, true],
184         ['event_ring_autotest', true, true],
185         ['fib_autotest', true, true],
186         ['fib6_autotest', true, true],
187         ['func_reentrancy_autotest', false, true],
188         ['hash_autotest', true, true],
189         ['interrupt_autotest', true, true],
190         ['ipfrag_autotest', false, true],
191         ['lcores_autotest', true, true],
192         ['logs_autotest', true, true],
193         ['lpm_autotest', true, true],
194         ['lpm6_autotest', true, true],
195         ['malloc_autotest', false, true],
196         ['mbuf_autotest', false, true],
197         ['mcslock_autotest', false, true],
198         ['memcpy_autotest', true, true],
199         ['memory_autotest', false, true],
200         ['mempool_autotest', false, true],
201         ['memzone_autotest', false, true],
202         ['meter_autotest', true, true],
203         ['multiprocess_autotest', false, false],
204         ['per_lcore_autotest', true, true],
205         ['pflock_autotest', true, true],
206         ['prefetch_autotest', true, true],
207         ['rcu_qsbr_autotest', true, true],
208         ['pie_autotest', true, true],
209         ['rib_autotest', true, true],
210         ['rib6_autotest', true, true],
211         ['ring_autotest', true, true],
212         ['rwlock_test1_autotest', true, true],
213         ['rwlock_rda_autotest', true, true],
214         ['rwlock_rds_wrm_autotest', true, true],
215         ['rwlock_rde_wro_autotest', true, true],
216         ['sched_autotest', true, true],
217         ['security_autotest', false, true],
218         ['spinlock_autotest', true, true],
219         ['stack_autotest', false, true],
220         ['stack_lf_autotest', false, true],
221         ['string_autotest', true, true],
222         ['tailq_autotest', true, true],
223         ['ticketlock_autotest', true, true],
224         ['timer_autotest', false, true],
225         ['user_delay_us', true, true],
226         ['version_autotest', true, true],
227         ['crc_autotest', true, true],
228         ['distributor_autotest', false, true],
229         ['eventdev_common_autotest', true, true],
230         ['fbarray_autotest', true, true],
231         ['hash_readwrite_func_autotest', false, true],
232         ['ipsec_autotest', true, true],
233         ['kni_autotest', false, true],
234         ['kvargs_autotest', true, true],
235         ['member_autotest', true, true],
236         ['power_cpufreq_autotest', false, true],
237         ['power_autotest', true, true],
238         ['power_kvm_vm_autotest', false, true],
239         ['reorder_autotest', true, true],
240         ['service_autotest', true, true],
241         ['thash_autotest', true, true],
242         ['trace_autotest', true, true],
243 ]
244
245 # Tests known to have issues or which don't belong in other tests lists.
246 extra_test_names = [
247         'alarm_autotest', # ee00af60170b ("test: remove strict timing requirements some tests")
248         'cycles_autotest', # ee00af60170b ("test: remove strict timing requirements some tests")
249         'delay_us_sleep_autotest', # ee00af60170b ("test: remove strict timing requirements some tests")
250         'red_autotest', # https://bugs.dpdk.org/show_bug.cgi?id=826
251 ]
252
253 perf_test_names = [
254         'ring_perf_autotest',
255         'malloc_perf_autotest',
256         'mempool_perf_autotest',
257         'memcpy_perf_autotest',
258         'hash_perf_autotest',
259         'timer_perf_autotest',
260         'reciprocal_division',
261         'reciprocal_division_perf',
262         'lpm_perf_autotest',
263         'rib_slow_autotest',
264         'fib_slow_autotest',
265         'fib_perf_autotest',
266         'red_all',
267         'pie_all',
268         'barrier_autotest',
269         'hash_multiwriter_autotest',
270         'timer_racecond_autotest',
271         'efd_autotest',
272         'hash_functions_autotest',
273         'member_perf_autotest',
274         'efd_perf_autotest',
275         'lpm6_perf_autotest',
276         'rib6_slow_autotest',
277         'fib6_slow_autotest',
278         'fib6_perf_autotest',
279         'rcu_qsbr_perf_autotest',
280         'red_perf',
281         'pie_perf',
282         'distributor_perf_autotest',
283         'pmd_perf_autotest',
284         'stack_perf_autotest',
285         'stack_lf_perf_autotest',
286         'rand_perf_autotest',
287         'hash_readwrite_perf_autotest',
288         'hash_readwrite_lf_perf_autotest',
289         'trace_perf_autotest',
290         'ipsec_perf_autotest',
291         'thash_perf_autotest',
292 ]
293
294 driver_test_names = []
295
296 dump_test_names = []
297
298 if not is_windows
299     driver_test_names += [
300             'cryptodev_aesni_mb_autotest',
301             'cryptodev_aesni_gcm_autotest',
302             'cryptodev_cn9k_autotest',
303             'cryptodev_cn10k_autotest',
304             'cryptodev_dpaa_sec_autotest',
305             'cryptodev_dpaa2_sec_autotest',
306             'cryptodev_null_autotest',
307             'cryptodev_openssl_autotest',
308             'cryptodev_openssl_asym_autotest',
309             'cryptodev_qat_autotest',
310             'cryptodev_sw_armv8_autotest',
311             'cryptodev_sw_kasumi_autotest',
312             'cryptodev_sw_mvsam_autotest',
313             'cryptodev_sw_snow3g_autotest',
314             'cryptodev_sw_zuc_autotest',
315             'dmadev_autotest',
316             'eventdev_selftest_octeontx',
317             'eventdev_selftest_sw',
318             'rawdev_autotest',
319     ]
320
321     dump_test_names += [
322             'dump_struct_sizes',
323             'dump_mempool',
324             'dump_malloc_stats',
325             'dump_devargs',
326             'dump_log_types',
327             'dump_ring',
328             'dump_physmem',
329             'dump_memzone',
330     ]
331 endif
332
333 # The following linkages are an exception to allow running the
334 # unit tests without requiring that the developer install the
335 # DPDK libraries.  Explicit linkage of drivers (plugin libraries)
336 # in applications should not be used.
337 if dpdk_conf.has('RTE_MEMPOOL_RING')
338     test_deps += 'mempool_ring'
339 endif
340 if dpdk_conf.has('RTE_MEMPOOL_STACK')
341     test_deps += 'mempool_stack'
342 endif
343 if dpdk_conf.has('RTE_EVENT_SKELETON')
344     test_deps += 'event_skeleton'
345 endif
346
347 if dpdk_conf.has('RTE_LIB_FLOW_CLASSIFY')
348     test_sources += 'test_flow_classify.c'
349     fast_tests += [['flow_classify_autotest', false, true]]
350 endif
351 if dpdk_conf.has('RTE_LIB_METRICS')
352     test_sources += ['test_metrics.c']
353     fast_tests += [['metrics_autotest', true, true]]
354 endif
355 if not is_windows and dpdk_conf.has('RTE_LIB_TELEMETRY')
356     test_sources += ['test_telemetry_json.c', 'test_telemetry_data.c']
357     fast_tests += [['telemetry_json_autotest', true, true]]
358     fast_tests += [['telemetry_data_autotest', true, true]]
359 endif
360 if dpdk_conf.has('RTE_LIB_PIPELINE')
361 # pipeline lib depends on port and table libs, so those must be present
362 # if pipeline library is.
363     test_sources += [
364             'test_table.c',
365             'test_table_acl.c',
366             'test_table_combined.c',
367             'test_table_pipeline.c',
368             'test_table_ports.c',
369             'test_table_tables.c',
370     ]
371     fast_tests += [['table_autotest', true, true]]
372 endif
373
374 # The following linkages of drivers are required because
375 # they are used via a driver-specific API.
376 if dpdk_conf.has('RTE_NET_BOND')
377     test_deps += 'net_bond'
378     test_sources += ['test_link_bonding.c', 'test_link_bonding_rssconf.c']
379     driver_test_names += ['link_bonding_autotest', 'link_bonding_rssconf_autotest']
380     if dpdk_conf.has('RTE_NET_RING')
381         test_sources += 'test_link_bonding_mode4.c'
382         driver_test_names += 'link_bonding_mode4_autotest'
383     endif
384 endif
385 if dpdk_conf.has('RTE_NET_RING')
386     test_deps += 'net_ring'
387     test_sources += 'test_pmd_ring_perf.c'
388     test_sources += 'test_pmd_ring.c'
389     test_sources += 'test_event_eth_tx_adapter.c'
390     test_sources += 'sample_packet_forward.c'
391     fast_tests += [['ring_pmd_autotest', true, true]]
392     perf_test_names += 'ring_pmd_perf_autotest'
393     fast_tests += [['event_eth_tx_adapter_autotest', false, true]]
394     if dpdk_conf.has('RTE_LIB_BITRATESTATS')
395         test_sources += 'test_bitratestats.c'
396         fast_tests += [['bitratestats_autotest', true, true]]
397     endif
398     if dpdk_conf.has('RTE_LIB_LATENCYSTATS')
399         test_sources += 'test_latencystats.c'
400         fast_tests += [['latencystats_autotest', true, true]]
401     endif
402     if dpdk_conf.has('RTE_LIB_PDUMP')
403         test_sources += 'test_pdump.c'
404         fast_tests += [['pdump_autotest', true, false]]
405     endif
406 endif
407 if dpdk_conf.has('RTE_NET_NULL')
408     test_deps += 'net_null'
409     test_sources += 'test_vdev.c'
410     fast_tests += [['vdev_autotest', true, true]]
411 endif
412
413 if dpdk_conf.has('RTE_HAS_LIBPCAP')
414     ext_deps += pcap_dep
415     if dpdk_conf.has('RTE_LIB_PCAPNG')
416         test_sources += 'test_pcapng.c'
417     endif
418 endif
419
420 if cc.has_argument('-Wno-format-truncation')
421     cflags += '-Wno-format-truncation'
422 endif
423
424 # Strict-aliasing rules are violated by uint8_t[] to context size casts.
425 cflags += '-fno-strict-aliasing'
426
427 # Enable using internal APIs in unit tests
428 cflags += ['-DALLOW_INTERNAL_API']
429
430 test_dep_objs = []
431 if dpdk_conf.has('RTE_LIB_COMPRESSDEV')
432     compress_test_dep = dependency('zlib', required: false, method: 'pkg-config')
433     if compress_test_dep.found()
434         test_dep_objs += compress_test_dep
435         test_sources += 'test_compressdev.c'
436         fast_tests += [['compressdev_autotest', false, true]]
437     endif
438 endif
439
440 if dpdk_conf.has('RTE_CRYPTO_SCHEDULER')
441     driver_test_names += 'cryptodev_scheduler_autotest'
442     test_deps += 'crypto_scheduler'
443 endif
444
445 foreach d:test_deps
446     def_lib = get_option('default_library')
447     test_dep_objs += get_variable(def_lib + '_rte_' + d)
448 endforeach
449
450 link_libs = []
451 if get_option('default_library') == 'static'
452     link_libs = dpdk_static_libraries + dpdk_drivers
453 endif
454
455 dpdk_test = executable('dpdk-test',
456         test_sources,
457         link_whole: link_libs,
458         dependencies: test_dep_objs + ext_deps,
459         c_args: cflags,
460         install_rpath: join_paths(get_option('prefix'),
461              driver_install_path),
462         install: true)
463
464 has_hugepage = run_command(py3, 'has_hugepage.py', check: true).stdout().strip() != '0'
465 message('hugepage availability: @0@'.format(has_hugepage))
466
467 # some perf tests (eg: memcpy perf autotest)take very long
468 # to complete, so timeout to 10 minutes
469 timeout_seconds = 600
470 timeout_seconds_fast = 10
471
472 foreach arg : fast_tests
473     test_args = []
474     run_test = true
475     if not has_hugepage
476         if arg[1]
477             test_args += ['--no-huge', '-m', '2048']
478         else
479             run_test = false
480         endif
481     endif
482
483     if get_option('b_sanitize') == 'address' or get_option('b_sanitize') == 'address,undefined'
484         if not arg[2]
485             run_test = false
486         endif
487     endif
488
489     if (get_option('default_library') == 'shared' and
490         arg[0] == 'event_eth_tx_adapter_autotest')
491         foreach drv:dpdk_drivers
492             test_args += ['-d', drv.full_path().split('.a')[0] + '.so']
493         endforeach
494     endif
495     if is_linux
496         test_args += ['--file-prefix=@0@'.format(arg[0])]
497     endif
498
499     if run_test
500         test(arg[0], dpdk_test,
501                 env : ['DPDK_TEST=' + arg[0]],
502                 args : test_args,
503                 timeout : timeout_seconds_fast,
504                 is_parallel : false,
505                 suite : 'fast-tests')
506     endif
507 endforeach
508
509 foreach arg : perf_test_names
510     test(arg, dpdk_test,
511             env : ['DPDK_TEST=' + arg],
512             timeout : timeout_seconds,
513             is_parallel : false,
514             suite : 'perf-tests')
515 endforeach
516
517 foreach arg : driver_test_names
518     test(arg, dpdk_test,
519             env : ['DPDK_TEST=' + arg],
520             timeout : timeout_seconds,
521             is_parallel : false,
522             suite : 'driver-tests')
523 endforeach
524
525 foreach arg : dump_test_names
526     test(arg, dpdk_test,
527             env : ['DPDK_TEST=' + arg],
528             timeout : timeout_seconds,
529             is_parallel : false,
530             suite : 'debug-tests')
531 endforeach
532
533 foreach arg : extra_test_names
534     test(arg, dpdk_test,
535             env : ['DPDK_TEST=' + arg],
536             timeout : timeout_seconds,
537             is_parallel : false,
538             suite : 'extra-tests')
539 endforeach