diff options
Diffstat (limited to '')
-rw-r--r-- | meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 319246c639..8a397e7c4d 100644 --- a/meson.build +++ b/meson.build @@ -1936,6 +1936,7 @@ conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests) ############################################################ tests = [] +simple_tests = [] fuzzers = [] catalogs = [] @@ -4076,6 +4077,10 @@ if '-O2' in c_args and '-flto=auto' in c_args test_cflags += cc.first_supported_argument('-Wno-maybe-uninitialized') endif +foreach test : simple_tests + tests += [ [[test]] ] +endforeach + foreach tuple : tests sources = tuple[0] link_with = tuple.length() > 1 and tuple[1].length() > 0 ? tuple[1] : [libshared] |