mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 05:10:09 +01:00
The targets that involve the use of the `libnm` library have been improved by applying a set of changes: - Generated enum sources variable `libnm_enum` has been renamed to `libnm_enum_sources` to clearly specify what it is holding. - Indentation in the `libnm` build and test files has been fixed. - Set of objects used in targets have been grouped together.
42 lines
948 B
Meson
42 lines
948 B
Meson
test_units = [
|
|
['test-libnm', 30],
|
|
['test-nm-client', 90],
|
|
['test-remote-settings-client', 90],
|
|
['test-secret-agent', 90],
|
|
]
|
|
|
|
deps = [
|
|
libnm_core_dep,
|
|
libnm_nm_default_dep,
|
|
]
|
|
|
|
c_flags = [
|
|
'-DNETWORKMANAGER_COMPILATION_TEST',
|
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_LIBNM',
|
|
]
|
|
|
|
foreach test_unit: test_units
|
|
exe = executable(
|
|
test_unit[0],
|
|
[test_unit[0] + '.c', nm_test_utils_impl_source, libnm_enum_sources[1]],
|
|
dependencies: deps,
|
|
c_args: c_flags,
|
|
link_with: liblibnm,
|
|
)
|
|
|
|
test(
|
|
test_unit[0],
|
|
test_script,
|
|
timeout: test_unit[1],
|
|
args: test_args + [exe.full_path()],
|
|
)
|
|
endforeach
|
|
|
|
# just test, that we can build "nm-vpn-plugin-utils.c"
|
|
libnm_vpn_plugin_utils_test = static_library(
|
|
'nm-vpn-plugin-utils-test',
|
|
sources: nm_vpn_plugin_utils_source + [libnm_enum_sources[1]],
|
|
include_directories: libnm_inc,
|
|
dependencies: libnm_nm_default_dep,
|
|
c_args: c_flags,
|
|
)
|