summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-10-18 12:50:20 +0200
committerThomas Haller <thaller@redhat.com>2018-12-20 13:50:34 +0100
commit35171b3c3f850a9136e48d12ead389ee80842268 (patch)
treeaf3aaf34027fe82e311c5f46d8fbe7c710ed3116 /src/tests
parentb00e004890b9c39fec4fe543bb95fdc263e774bc (diff)
downloadNetworkManager-35171b3c3f850a9136e48d12ead389ee80842268.tar.gz
build: meson: Add trailing commas
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
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/config/meson.build4
-rw-r--r--src/tests/meson.build10
2 files changed, 7 insertions, 7 deletions
diff --git a/src/tests/config/meson.build b/src/tests/config/meson.build
index fd6c89b7f8..dc0a022cf4 100644
--- a/src/tests/config/meson.build
+++ b/src/tests/config/meson.build
@@ -2,7 +2,7 @@ test_unit = 'test-config'
sources = files(
'nm-test-device.c',
- 'test-config.c'
+ 'test-config.c',
)
test_config_dir = meson.current_source_dir()
@@ -16,5 +16,5 @@ exe = executable(
test(
'config/' + test_unit,
test_script,
- args: test_args + [exe.full_path()]
+ args: test_args + [exe.full_path()],
)
diff --git a/src/tests/meson.build b/src/tests/meson.build
index 430ffe43dc..a009c8fc2c 100644
--- a/src/tests/meson.build
+++ b/src/tests/meson.build
@@ -7,20 +7,20 @@ test_units = [
'test-ip6-config',
'test-dcb',
'test-wired-defname',
- 'test-utils'
+ 'test-utils',
]
foreach test_unit: test_units
exe = executable(
test_unit,
test_unit + '.c',
- dependencies: test_nm_dep
+ dependencies: test_nm_dep,
)
test(
'src/' + test_unit,
test_script,
- args: test_args + [exe.full_path()]
+ args: test_args + [exe.full_path()],
)
endforeach
@@ -37,11 +37,11 @@ exe = executable(
include_directories: src_inc,
dependencies: nm_core_dep,
c_args: cflags,
- link_with: libsystemd_nm
+ link_with: libsystemd_nm,
)
test(
'src/' + test_unit,
test_script,
- args: test_args + [exe.full_path()]
+ args: test_args + [exe.full_path()],
)