b5dc795a8a
This patch enables the test/test app to be built. It also adds the test binary to be a meson-test, which allows the meson test infrastructure to be used to run tests. Tests are listed using the same test binary, however each test sets a different DPDK_TEST environment variable. The string contents of this DPDK_TEST env var is entered in the command line interface. As such, the familiar test names such as "ring_perf_autotest" etc are valid tests to run using this meson test infrastructure. Note that the tests are run serially, given that we cannot run multiple primary processes at a time. As each test must initialize EAL this takes some time depending on the number of hugepages. In future, we could improve this to run multiple tests from one EAL init, but it is out of scope for this patchset. Finally, an option to build the tests is added to the meson build options. When disabled, the unit test code in test/test is not compiled. The default is set to 'true'. To disable, run: $ meson configure -Dtests=false Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
23 lines
1.2 KiB
Meson
23 lines
1.2 KiB
Meson
option('allow_invalid_socket_id', type: 'boolean', value: false,
|
|
description: 'allow out-of-range NUMA socket id\'s for platforms that don\'t report the value correctly')
|
|
option('enable_kmods', type: 'boolean', value: true,
|
|
description: 'build kernel modules')
|
|
option('examples', type: 'string', value: '',
|
|
description: 'Comma-separated list of examples to build by default')
|
|
option('include_subdir_arch', type: 'string', value: '',
|
|
description: 'subdirectory where to install arch-dependent headers')
|
|
option('kernel_dir', type: 'string', value: '',
|
|
description: 'path to the kernel for building kernel modules')
|
|
option('machine', type: 'string', value: 'native',
|
|
description: 'set the target machine type')
|
|
option('max_lcores', type: 'string', value: '128',
|
|
description: 'maximum number of cores/threads supported by EAL')
|
|
option('max_numa_nodes', type: 'string', value: '4',
|
|
description: 'maximum number of NUMA nodes supported by EAL')
|
|
option('per_library_versions', type: 'boolean', value: true,
|
|
description: 'true: each lib gets its own version number, false: DPDK version used for each lib')
|
|
option('use_hpet', type: 'boolean', value: false,
|
|
description: 'use HPET timer in EAL')
|
|
option('tests', type: 'boolean', value: true,
|
|
description: 'build unit tests')
|