mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-24 11:08:13 +02:00
Add missing trailing commas that avoids getting noise when another file/parameter is added and eases reviewing changes[0]. [0] https://gitlab.gnome.org/GNOME/dconf/merge_requests/11#note_291585
30 lines
512 B
Meson
30 lines
512 B
Meson
deps = [
|
|
dbus_dep,
|
|
dbus_glib_dep,
|
|
libnm_glib_dep,
|
|
libnm_util_dep,
|
|
shared_dep,
|
|
]
|
|
|
|
test_units = [
|
|
'test-nm-client',
|
|
'test-remote-settings-client',
|
|
]
|
|
|
|
foreach test_unit: test_units
|
|
exe = executable(
|
|
test_unit,
|
|
[test_unit + '.c'] + shared_nm_test_utils_impl_c,
|
|
dependencies: deps,
|
|
c_args:
|
|
common_cflags + [
|
|
'-DNETWORKMANAGER_COMPILATION_TEST',
|
|
],
|
|
)
|
|
|
|
test(
|
|
'libnm-glib/' + test_unit,
|
|
test_script,
|
|
args: test_args + [exe.full_path()],
|
|
)
|
|
endforeach
|