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-21 21:18:06 +0100
commit1a58c1a2cb8fa702a73de0aabc6c977c7af5aff1 (patch)
tree4e364ecf79e0c10a35b23c063fd209333f02eed9 /test
parent65d651e45edd9f3746dd210da4709206bed6c7e7 (diff)
downloadgvfs-1a58c1a2cb8fa702a73de0aabc6c977c7af5aff1.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