mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-23 08:18:11 +02:00
39 lines
695 B
Meson
39 lines
695 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
exe = executable(
|
|
'test-clients-common',
|
|
'test-clients-common.c',
|
|
dependencies: [
|
|
libnmc_base_dep,
|
|
libnmc_dep,
|
|
],
|
|
c_args: [
|
|
'-DG_LOG_DOMAIN="test"',
|
|
],
|
|
)
|
|
|
|
test(
|
|
'clients/common/tests/test-clients-common',
|
|
test_script,
|
|
args: test_args + [exe.full_path()],
|
|
)
|
|
|
|
exe = executable(
|
|
'test-libnm-core-aux',
|
|
'test-libnm-core-aux.c',
|
|
dependencies: [
|
|
libnm_dep,
|
|
libnm_libnm_core_aux_dep,
|
|
libnm_nm_default_dep,
|
|
],
|
|
c_args: [
|
|
'-DG_LOG_DOMAIN="test"',
|
|
],
|
|
link_with: libnm_systemd_logging_stub,
|
|
)
|
|
|
|
test(
|
|
'clients/common/tests/test-libnm-core-aux',
|
|
test_script,
|
|
args: test_args + [exe.full_path()]
|
|
)
|