about summary refs log tree commit diff
path: root/libnm-util/tests/meson.build
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2019-01-25 11:24:41 +0100
committerSebastien Bacher <seb128@ubuntu.com>2019-01-25 11:24:41 +0100
commitbbae86d3d2997a853ca0365e8eb7a3ca7489ee09 (patch)
tree1f7fa49b47ab13aea3effbe839559d221f6323b4 /libnm-util/tests/meson.build
parent404ebe62622150e77e311777dff8617eb974e834 (diff)
New upstream version 1.15.2
Diffstat (limited to 'libnm-util/tests/meson.build')
-rw-r--r--libnm-util/tests/meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/libnm-util/tests/meson.build b/libnm-util/tests/meson.build
index 49c35a51..048ec3bb 100644
--- a/libnm-util/tests/meson.build
+++ b/libnm-util/tests/meson.build
@@ -2,7 +2,7 @@ deps = [
   dbus_dep,
   dbus_glib_dep,
   libnm_util_dep,
-  shared_dep
+  shared_dep,
 ]
 
 cflags = common_cflags + [
@@ -15,7 +15,7 @@ test_libnm_linking = executable(
   test,
   test + '.c',
   dependencies: deps + [libnm_dep],
-  c_args: cflags
+  c_args: cflags,
 )
 
 test_units = [
@@ -24,7 +24,7 @@ test_units = [
   ['test-secrets', [], []],
   ['test-setting-8021x', [], []],
   ['test-setting-dcb', [], []],
-  ['test-settings-defaults', [], []]
+  ['test-settings-defaults', [], []],
 ]
 
 foreach test_unit: test_units
@@ -34,12 +34,12 @@ foreach test_unit: test_units
     dependencies: deps,
     c_args: cflags,
     link_with: test_unit[1],
-    link_depends: test_unit[2]
+    link_depends: test_unit[2],
   )
 
   test(
     'libnm-util/' + test_unit[0],
     test_script,
-    args: test_args + [exe.full_path()]
+    args: test_args + [exe.full_path()],
   )
 endforeach