summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-17 15:48:39 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-04 16:33:53 +0100
commitf4ee93b06cfc4d9f727f9174e40d08097a25d571 (patch)
tree6dd68ea2ec3540a8a835c3f479373273995130e9 /test
parentc25bc351bb2605e57bc9a6d9250c9d4748c3d9e0 (diff)
downloadgvfs-f4ee93b06cfc4d9f727f9174e40d08097a25d571.tar.gz
build: 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 'test')
-rw-r--r--test/meson.build16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/meson.build b/test/meson.build
index 77d2044c..ee73859a 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -12,7 +12,7 @@ if enable_installed_tests
output: session,
install: true,
install_dir: installed_tests_execdir,
- configuration: tests_conf
+ configuration: tests_conf,
)
all_tests = 'gvfs-all-tests'
@@ -22,24 +22,24 @@ if enable_installed_tests
output: all_tests + '.test',
install: true,
install_dir: installed_tests_metadir,
- configuration: tests_conf
+ configuration: tests_conf,
)
install_subdir(
'files',
- install_dir: installed_tests_execdir
+ install_dir: installed_tests_execdir,
)
gvfs_test = files('gvfs-test')
test_data = gvfs_test + [
daemon_service,
- metadata_service
+ metadata_service,
]
install_data(
test_data + monitors_test_data,
- install_dir: installed_tests_execdir
+ install_dir: installed_tests_execdir,
)
endif
@@ -49,12 +49,12 @@ if enable_devel_utils
'benchmark-gvfs-small-files',
'benchmark-posix-big-files',
'benchmark-posix-small-files',
- 'test-query-info-stream'
+ 'test-query-info-stream',
]
deps = [
gio_dep,
- glib_dep
+ glib_dep,
]
foreach test: tests
@@ -62,7 +62,7 @@ if enable_devel_utils
test,
test + '.c',
include_directories: top_inc,
- dependencies: deps
+ dependencies: deps,
)
endforeach
endif