48 lines
805 B
Meson
48 lines
805 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,
|
|
glib_dep,
|
|
],
|
|
link_with: [
|
|
libnm_core_aux_extern,
|
|
libnm_core_aux_intern,
|
|
libnm_base,
|
|
libnm_glib_aux,
|
|
libnm_std_aux,
|
|
libc_siphash,
|
|
],
|
|
)
|
|
|
|
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,
|
|
glib_dep,
|
|
],
|
|
link_with: [
|
|
libnm_core_aux_extern,
|
|
libnm_log_null,
|
|
libnm_glib_aux,
|
|
libnm_std_aux,
|
|
libc_siphash,
|
|
],
|
|
)
|
|
|
|
test(
|
|
'clients/common/tests/test-libnm-core-aux',
|
|
test_script,
|
|
args: test_args + [exe.full_path()]
|
|
)
|