summaryrefslogtreecommitdiff
path: root/src/coredump
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-01-25 17:19:52 +0100
committerJan Janssen <medhefgo@web.de>2023-02-21 15:10:26 +0100
commit822cd3ff2579d6de8acd45d85d2b9d5f44048d5c (patch)
tree570148c87a6ea6f4cfcbe2b4db525684f3af9534 /src/coredump
parentc12e10d785bfe70359a3ec4ae4666957c570c538 (diff)
downloadsystemd-822cd3ff2579d6de8acd45d85d2b9d5f44048d5c.tar.gz
meson: Use dicts for test definitions
Although this slightly more verbose it makes it much easier to reason about. The code that produces the tests heavily benefits from this. Test lists are also now sorted by test name.
Diffstat (limited to 'src/coredump')
-rw-r--r--src/coredump/meson.build10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/coredump/meson.build b/src/coredump/meson.build
index 9398a5142b..fb31a2148f 100644
--- a/src/coredump/meson.build
+++ b/src/coredump/meson.build
@@ -13,7 +13,11 @@ if conf.get('ENABLE_COREDUMP') == 1 and install_sysconfdir_samples
endif
tests += [
- [files('test-coredump-vacuum.c',
- 'coredump-vacuum.c'),
- [], [], [], '', 'manual'],
+ {
+ 'sources' : files(
+ 'test-coredump-vacuum.c',
+ 'coredump-vacuum.c',
+ ),
+ 'type' : 'manual',
+ },
]