blob: d0d8b1cf79dd473e60c3ee098296519c495c2e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# SPDX-License-Identifier: LGPL-2.1-or-later
test_config_dir = meson.current_source_dir()
test_unit = 'test-config'
sources = files(
'nm-test-device.c',
'test-config.c',
)
exe = executable(
test_unit,
sources,
dependencies: libNetworkManagerTest_dep,
c_args: test_c_flags,
)
test(
'config/' + test_unit,
test_script,
args: test_args + [exe.full_path()],
timeout: default_test_timeout,
)
|