1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
4 test_sources = files('commands.c',
5 'packet_burst_generator.c',
6 'sample_packet_forward.c',
12 'test_bitratestats.c',
16 'test_cmdline_cirbuf.c',
17 'test_cmdline_etheraddr.c',
18 'test_cmdline_ipaddr.c',
21 'test_cmdline_portlist.c',
22 'test_cmdline_string.c',
27 'test_cryptodev_asym.c',
28 'test_cryptodev_blockcipher.c',
32 'test_distributor_perf.c',
38 'test_event_crypto_adapter.c',
39 'test_event_eth_rx_adapter.c',
41 'test_event_eth_tx_adapter.c',
42 'test_event_timer_adapter.c',
44 'test_external_mem.c',
46 'test_func_reentrancy.c',
47 'test_flow_classify.c',
49 'test_hash_functions.c',
50 'test_hash_multiwriter.c',
51 'test_hash_readwrite.c',
53 'test_hash_readwrite_lf.c',
58 'test_latencystats.c',
59 'test_link_bonding.c',
60 'test_link_bonding_mode4.c',
74 'test_mempool_perf.c',
78 'test_mp_secondary.c',
83 'test_pmd_ring_perf.c',
85 'test_power_acpi_cpufreq.c',
86 'test_power_kvm_vm.c',
88 'test_reciprocal_division.c',
89 'test_reciprocal_division_perf.c',
96 'test_service_cores.c',
101 'test_table_combined.c',
102 'test_table_pipeline.c',
103 'test_table_ports.c',
104 'test_table_tables.c',
109 'test_timer_racecond.c',
138 # All test cases in fast_parallel_test_names list are parallel
139 fast_parallel_test_names = [
143 'byteorder_autotest',
149 'eal_flags_autotest',
152 'event_ring_autotest',
153 'func_reentrancy_autotest',
154 'flow_classify_autotest',
156 'interrupt_autotest',
167 'multiprocess_autotest',
168 'per_lcore_autotest',
184 # All test cases in fast_non_parallel_test_names list are non-parallel
185 fast_non_parallel_test_names = [
186 'bitratestats_autotest',
187 'cryptodev_sw_armv8_autotest',
189 'cryptodev_openssl_asym_autotest',
190 'cryptodev_sw_mvsam_autotest',
191 'delay_us_sleep_autotest',
193 'distributor_autotest',
194 'eventdev_common_autotest',
195 'eventdev_octeontx_autotest',
196 'eventdev_sw_autotest',
198 'hash_readwrite_autotest',
199 'hash_readwrite_lf_autotest',
200 'hash_scaling_autotest',
204 'latencystats_autotest',
208 'power_acpi_cpufreq_autotest',
210 'power_kvm_vm_autotest',
216 # All test cases in perf_test_names list are non-parallel
218 'ring_perf_autotest',
219 'mempool_perf_autotest',
220 'memcpy_perf_autotest',
221 'hash_perf_autotest',
222 'timer_perf_autotest',
223 'reciprocal_division',
224 'reciprocal_division_perf',
228 'hash_multiwriter_autotest',
229 'timer_racecond_autotest',
231 'hash_functions_autotest',
232 'eventdev_selftest_sw',
233 'member_perf_autotest',
235 'lpm6_perf_autotest',
237 'distributor_perf_autotest',
238 'ring_pmd_perf_autotest',
242 # All test cases in driver_test_names list are non-parallel
243 driver_test_names = [
244 'link_bonding_autotest',
245 'link_bonding_mode4_autotest',
246 'link_bonding_rssconf_autotest',
247 'cryptodev_sw_mrvl_autotest',
248 'cryptodev_dpaa2_sec_autotest',
249 'cryptodev_dpaa_sec_autotest',
250 'cryptodev_qat_autotest',
251 'cryptodev_aesni_mb_autotest',
252 'cryptodev_openssl_autotest',
253 'cryptodev_scheduler_autotest',
254 'cryptodev_aesni_gcm_autotest',
255 'cryptodev_null_autotest',
256 'cryptodev_sw_snow3g_autotest',
257 'cryptodev_sw_kasumi_autotest',
258 'cryptodev_sw_zuc_autotest',
261 # All test cases in dump_test_names list are non-parallel
273 if dpdk_conf.has('RTE_LIBRTE_PDUMP')
276 if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
277 test_deps += 'pmd_i40e'
279 if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
280 test_deps += 'pmd_ixgbe'
282 if dpdk_conf.has('RTE_LIBRTE_BOND_PMD')
283 test_deps += 'pmd_bond'
285 if dpdk_conf.has('RTE_LIBRTE_RING_PMD')
286 test_deps += 'pmd_ring'
288 if dpdk_conf.has('RTE_LIBRTE_POWER')
291 if dpdk_conf.has('RTE_LIBRTE_KNI')
295 cflags = machine_args
296 if cc.has_argument('-Wno-format-truncation')
297 cflags += '-Wno-format-truncation'
300 # specify -D_GNU_SOURCE unconditionally
301 default_cflags += '-D_GNU_SOURCE'
304 if dpdk_conf.has('RTE_LIBRTE_COMPRESSDEV')
305 compress_test_dep = dependency('zlib', required: false)
306 if compress_test_dep.found()
307 test_dep_objs += compress_test_dep
308 test_sources += 'test_compressdev.c'
309 test_deps += 'compressdev'
310 fast_non_parallel_test_names += 'compressdev_autotest'
315 def_lib = get_option('default_library')
316 test_dep_objs += get_variable(def_lib + '_rte_' + d)
318 test_dep_objs += cc.find_library('execinfo', required: false)
321 if get_option('default_library') == 'static'
322 link_libs = dpdk_drivers
325 if get_option('tests')
326 dpdk_test = executable('dpdk-test',
328 link_whole: link_libs,
329 dependencies: test_dep_objs,
330 c_args: [cflags, '-DALLOW_EXPERIMENTAL_API'],
331 install_rpath: driver_install_path,
334 # some perf tests (eg: memcpy perf autotest)take very long
335 # to complete, so timeout to 10 minutes
336 timeout_seconds = 600
337 timeout_seconds_fast = 10
339 foreach arg : fast_parallel_test_names
341 env : ['DPDK_TEST=' + arg],
342 args : ['-c f','-n 4', '--file-prefix=@0@'.format(arg)],
343 timeout : timeout_seconds_fast,
344 suite : 'fast-tests')
347 foreach arg : fast_non_parallel_test_names
349 env : ['DPDK_TEST=' + arg],
350 timeout : timeout_seconds_fast,
352 suite : 'fast-tests')
355 foreach arg : perf_test_names
357 env : ['DPDK_TEST=' + arg],
358 timeout : timeout_seconds,
360 suite : 'perf-tests')
363 foreach arg : driver_test_names
365 env : ['DPDK_TEST=' + arg],
366 timeout : timeout_seconds,
368 suite : 'driver-tests')
371 foreach arg : dump_test_names
373 env : ['DPDK_TEST=' + arg],
374 timeout : timeout_seconds,
376 suite : 'debug-tests')