mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-19 09:48:09 +02:00
There are some tests located in different directories which are using the same name. To avoid any confussion a prefix was used to name the test and the target. This patch uses the prefix just for the target, to avoid any collision that may happen, and uses the `test-` pattern as the name. https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00051.html
16 lines
229 B
Meson
16 lines
229 B
Meson
test_unit = 'test-general'
|
|
|
|
deps += [
|
|
libnmc_dep,
|
|
libnmc_base_dep
|
|
]
|
|
|
|
exe = executable(
|
|
'clients-' + test_unit,
|
|
test_unit + '.c',
|
|
include_directories: incs,
|
|
dependencies: deps,
|
|
c_args: cflags
|
|
)
|
|
|
|
test(test_unit, exe)
|