1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# SPDX-License-Identifier: LGPL-2.1-or-later
exe = executable(
'test-libnm-core-utils',
'test-libnm-core-utils.c',
include_directories: [
libnm_core_aux_intern_inc
],
link_with: [
libnm_core_aux_intern,
libnm_core_impl,
libnm_base,
libnm_crypto,
libnm_systemd_shared,
libnm_log_null,
libnm_glib_aux,
libnm_std_aux,
libc_siphash,
],
dependencies: [
libnm_client_public_dep,
libnm_core_public_dep,
uuid_dep,
glib_dep,
dl_dep,
],
)
test(
'src/libnm-core-aux-intern/tests/test-libnm-core-utils',
exe,
args: test_args + [exe.full_path()],
timeout: default_test_timeout,
)
|