152484
From 845417e653b42b8f3928c68955bd6416f2fa4509 Mon Sep 17 00:00:00 2001
152484
From: Lennart Poettering <lennart@poettering.net>
152484
Date: Tue, 1 Feb 2022 12:06:59 +0100
152484
Subject: [PATCH] tests: rework test macros to not take code as parameters
152484
152484
C macros are nasty. We use them, but we try to be conservative with
152484
them. In particular passing literal, complex code blocks as argument is
152484
icky, because of "," handling of C, and also because it's quite a
152484
challange for most code highlighters and similar. Hence, let's avoid
152484
that. Using macros for genreating functions is OK but if so, the
152484
parameters should be simple words, not full code blocks.
152484
152484
hence, rework DEFINE_CUSTOM_TEST_MAIN() to take a function name instead
152484
of code block as argument.
152484
152484
As side-effect this also fixes a bunch of cases where we might end up
152484
returning a negative value from main().
152484
152484
Some uses of DEFINE_CUSTOM_TEST_MAIN() inserted local variables into the
152484
main() functions, these are replaced by static variables, and their
152484
destructors by the static destructor logic.
152484
152484
This doesn't fix any bugs or so, it's just supposed to make the code
152484
easier to work with and improve it easthetically.
152484
152484
Or in other words: let's use macros where it really makes sense, but
152484
let's not go overboard with it.
152484
152484
(And yes, FOREACH_DIRENT() is another one of those macros that take
152484
code, and I dislike that too and regret I ever added that.)
152484
152484
(cherry picked from commit 99839c7ebd4b83a5b0d5982d669cfe10d1252e1f)
152484
152484
Related: #2017035
152484
---
152484
 src/shared/tests.h              | 25 +++++++++++++-----
152484
 src/test/test-barrier.c         | 46 +++++++++++++++++----------------
152484
 src/test/test-cgroup-setup.c    | 15 ++++++-----
152484
 src/test/test-chown-rec.c       | 15 ++++++-----
152484
 src/test/test-format-table.c    | 14 +++++-----
152484
 src/test/test-fs-util.c         |  7 ++++-
152484
 src/test/test-hashmap.c         | 16 +++++++++---
152484
 src/test/test-install-root.c    | 14 +++++++---
152484
 src/test/test-load-fragment.c   | 21 ++++++++-------
152484
 src/test/test-mountpoint-util.c | 30 +++++++++++----------
152484
 src/test/test-namespace.c       | 15 ++++++-----
152484
 src/test/test-proc-cmdline.c    | 15 ++++++-----
152484
 src/test/test-process-util.c    |  7 ++++-
152484
 src/test/test-sd-hwdb.c         | 21 ++++++++-------
152484
 src/test/test-serialize.c       | 16 ++++++------
152484
 src/test/test-sleep.c           | 15 ++++++-----
152484
 src/test/test-stat-util.c       |  7 ++++-
152484
 src/test/test-time-util.c       |  6 +++--
152484
 src/test/test-unit-file.c       |  7 ++++-
152484
 src/test/test-unit-name.c       | 21 ++++++++-------
152484
 src/test/test-unit-serialize.c  | 21 ++++++++-------
152484
 src/test/test-utf8.c            |  7 ++++-
152484
 22 files changed, 215 insertions(+), 146 deletions(-)
152484
152484
diff --git a/src/shared/tests.h b/src/shared/tests.h
152484
index 3b93aab498..59448f38f6 100644
152484
--- a/src/shared/tests.h
152484
+++ b/src/shared/tests.h
152484
@@ -6,6 +6,7 @@
152484
 #include "sd-daemon.h"
152484
 
152484
 #include "macro.h"
152484
+#include "static-destruct.h"
152484
 #include "util.h"
152484
 
152484
 static inline bool manager_errno_skip_test(int r) {
152484
@@ -109,15 +110,27 @@ static inline int run_test_table(void) {
152484
         return r;
152484
 }
152484
 
152484
+static inline int test_nop(void) {
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
 #define DEFINE_CUSTOM_TEST_MAIN(log_level, intro, outro) \
152484
         int main(int argc, char *argv[]) {               \
152484
-                int _r = EXIT_SUCCESS;                   \
152484
+                int _r, _q;                              \
152484
                 test_setup_logging(log_level);           \
152484
                 save_argc_argv(argc, argv);              \
152484
-                intro;                                   \
152484
-                _r = run_test_table();                   \
152484
-                outro;                                   \
152484
-                return _r;                               \
152484
+                _r = intro();                            \
152484
+                if (_r == EXIT_SUCCESS)                  \
152484
+                        _r = run_test_table();           \
152484
+                _q = outro();                            \
152484
+                static_destruct();                       \
152484
+                if (_r < 0)                              \
152484
+                        return EXIT_FAILURE;             \
152484
+                if (_r != EXIT_SUCCESS)                  \
152484
+                        return _r;                       \
152484
+                if (_q < 0)                              \
152484
+                        return EXIT_FAILURE;             \
152484
+                return _q;                               \
152484
         }
152484
 
152484
-#define DEFINE_TEST_MAIN(log_level) DEFINE_CUSTOM_TEST_MAIN(log_level, , )
152484
+#define DEFINE_TEST_MAIN(log_level) DEFINE_CUSTOM_TEST_MAIN(log_level, test_nop, test_nop)
152484
diff --git a/src/test/test-barrier.c b/src/test/test-barrier.c
152484
index 8998282afb..b87538806a 100644
152484
--- a/src/test/test-barrier.c
152484
+++ b/src/test/test-barrier.c
152484
@@ -421,25 +421,27 @@ TEST_BARRIER(barrier_pending_exit,
152484
         }),
152484
         TEST_BARRIER_WAIT_SUCCESS(pid2));
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
-        ({
152484
-                if (!slow_tests_enabled())
152484
-                        return log_tests_skipped("slow tests are disabled");
152484
-
152484
-                /*
152484
-                * This test uses real-time alarms and sleeps to test for CPU races
152484
-                * explicitly. This is highly fragile if your system is under load. We
152484
-                * already increased the BASE_TIME value to make the tests more robust,
152484
-                * but that just makes the test take significantly longer. Given the recent
152484
-                * issues when running the test in a virtualized environments, limit it
152484
-                * to bare metal machines only, to minimize false-positives in CIs.
152484
-                */
152484
-                int v = detect_virtualization();
152484
-                if (IN_SET(v, -EPERM, -EACCES))
152484
-                        return log_tests_skipped("Cannot detect virtualization");
152484
-
152484
-                if (v != VIRTUALIZATION_NONE)
152484
-                        return log_tests_skipped("This test requires a baremetal machine");
152484
-        }),
152484
-        /* no outro */);
152484
+
152484
+static int intro(void) {
152484
+        if (!slow_tests_enabled())
152484
+                return log_tests_skipped("slow tests are disabled");
152484
+
152484
+        /*
152484
+         * This test uses real-time alarms and sleeps to test for CPU races explicitly. This is highly
152484
+         * fragile if your system is under load. We already increased the BASE_TIME value to make the tests
152484
+         * more robust, but that just makes the test take significantly longer. Given the recent issues when
152484
+         * running the test in a virtualized environments, limit it to bare metal machines only, to minimize
152484
+         * false-positives in CIs.
152484
+         */
152484
+
152484
+        int v = detect_virtualization();
152484
+        if (IN_SET(v, -EPERM, -EACCES))
152484
+                return log_tests_skipped("Cannot detect virtualization");
152484
+
152484
+        if (v != VIRTUALIZATION_NONE)
152484
+                return log_tests_skipped("This test requires a baremetal machine");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+ }
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-cgroup-setup.c b/src/test/test-cgroup-setup.c
152484
index 018992f96d..6f93647685 100644
152484
--- a/src/test/test-cgroup-setup.c
152484
+++ b/src/test/test-cgroup-setup.c
152484
@@ -64,10 +64,11 @@ TEST(is_wanted) {
152484
         test_is_wanted_print_one(false);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_DEBUG,
152484
-        ({
152484
-                if (access("/proc/cmdline", R_OK) < 0 && ERRNO_IS_PRIVILEGE(errno))
152484
-                        return log_tests_skipped("can't read /proc/cmdline");
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        if (access("/proc/cmdline", R_OK) < 0 && ERRNO_IS_PRIVILEGE(errno))
152484
+                return log_tests_skipped("can't read /proc/cmdline");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-chown-rec.c b/src/test/test-chown-rec.c
152484
index 53d44566d5..691cfe767f 100644
152484
--- a/src/test/test-chown-rec.c
152484
+++ b/src/test/test-chown-rec.c
152484
@@ -149,10 +149,11 @@ TEST(chown_recursive) {
152484
         assert_se(!has_xattr(p));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_DEBUG,
152484
-        ({
152484
-                if (geteuid() != 0)
152484
-                        return log_tests_skipped("not running as root");
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        if (geteuid() != 0)
152484
+                return log_tests_skipped("not running as root");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-format-table.c b/src/test/test-format-table.c
152484
index a3b29ca337..7515a74c12 100644
152484
--- a/src/test/test-format-table.c
152484
+++ b/src/test/test-format-table.c
152484
@@ -529,10 +529,10 @@ TEST(table) {
152484
                                 "5min              5min              \n"));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
-        ({
152484
-                assert_se(setenv("SYSTEMD_COLORS", "0", 1) >= 0);
152484
-                assert_se(setenv("COLUMNS", "40", 1) >= 0);
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        assert_se(setenv("SYSTEMD_COLORS", "0", 1) >= 0);
152484
+        assert_se(setenv("COLUMNS", "40", 1) >= 0);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c
152484
index 0e0d91d04e..da5a16b4bc 100644
152484
--- a/src/test/test-fs-util.c
152484
+++ b/src/test/test-fs-util.c
152484
@@ -968,4 +968,9 @@ TEST(open_mkdir_at) {
152484
         assert_se(subsubdir_fd >= 0);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, arg_test_dir = argv[1], /* no outro */);
152484
+static int intro(void) {
152484
+        arg_test_dir = saved_argv[1];
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-hashmap.c b/src/test/test-hashmap.c
152484
index cba0c33a8a..4dc155d818 100644
152484
--- a/src/test/test-hashmap.c
152484
+++ b/src/test/test-hashmap.c
152484
@@ -158,7 +158,15 @@ TEST(hashmap_put_strdup_null) {
152484
 /* This variable allows us to assert that the tests from different compilation units were actually run. */
152484
 int n_extern_tests_run = 0;
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
-        assert_se(n_extern_tests_run == 0),
152484
-        assert_se(n_extern_tests_run == 2)); /* Ensure hashmap and ordered_hashmap were tested. */
152484
+static int intro(void) {
152484
+        assert_se(n_extern_tests_run == 0);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+static int outro(void) {
152484
+        /* Ensure hashmap and ordered_hashmap were tested. */
152484
+        assert_se(n_extern_tests_run == 2);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, outro);
152484
diff --git a/src/test/test-install-root.c b/src/test/test-install-root.c
152484
index ba715e6d7e..f540a832bd 100644
152484
--- a/src/test/test-install-root.c
152484
+++ b/src/test/test-install-root.c
152484
@@ -11,8 +11,11 @@
152484
 #include "special.h"
152484
 #include "string-util.h"
152484
 #include "tests.h"
152484
+#include "tmpfile-util.h"
152484
 
152484
-static char root[] = "/tmp/rootXXXXXX";
152484
+static char *root = NULL;
152484
+
152484
+STATIC_DESTRUCTOR_REGISTER(root, rm_rf_physical_and_freep);
152484
 
152484
 TEST(basic_mask_and_enable) {
152484
         const char *p;
152484
@@ -1239,10 +1242,10 @@ TEST(verify_alias) {
152484
         verify_one(&di_inst_template, "goo.target.conf/plain.service", -EXDEV, NULL);
152484
 }
152484
 
152484
-static void setup_root(void) {
152484
+static int intro(void) {
152484
         const char *p;
152484
 
152484
-        assert_se(mkdtemp(root));
152484
+        assert_se(mkdtemp_malloc("/tmp/rootXXXXXX", &root) >= 0);
152484
 
152484
         p = strjoina(root, "/usr/lib/systemd/system/");
152484
         assert_se(mkdir_p(p, 0755) >= 0);
152484
@@ -1264,6 +1267,9 @@ static void setup_root(void) {
152484
 
152484
         p = strjoina(root, "/usr/lib/systemd/system/graphical.target");
152484
         assert_se(write_string_file(p, "# pretty much empty", WRITE_STRING_FILE_CREATE) >= 0);
152484
+
152484
+        return EXIT_SUCCESS;
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, setup_root(), assert_se(rm_rf(root, REMOVE_ROOT|REMOVE_PHYSICAL) >= 0));
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-load-fragment.c b/src/test/test-load-fragment.c
152484
index e878979a89..2e105df56a 100644
152484
--- a/src/test/test-load-fragment.c
152484
+++ b/src/test/test-load-fragment.c
152484
@@ -30,6 +30,10 @@
152484
 /* Nontrivial value serves as a placeholder to check that parsing function (didn't) change it */
152484
 #define CGROUP_LIMIT_DUMMY      3
152484
 
152484
+static char *runtime_dir = NULL;
152484
+
152484
+STATIC_DESTRUCTOR_REGISTER(runtime_dir, rm_rf_physical_and_freep);
152484
+
152484
 TEST_RET(unit_file_get_set) {
152484
         int r;
152484
         Hashmap *h;
152484
@@ -894,15 +898,12 @@ TEST(unit_is_recursive_template_dependency) {
152484
         assert_se(unit_is_likely_recursive_template_dependency(u, "foobar@foobar@123.mount", "foobar@%n.mount") == 0);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
+static int intro(void) {
152484
+        if (enter_cgroup_subroot(NULL) == -ENOMEDIUM)
152484
+                return log_tests_skipped("cgroupfs not available");
152484
 
152484
-        _cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
152484
-        ({
152484
-                if (enter_cgroup_subroot(NULL) == -ENOMEDIUM)
152484
-                        return log_tests_skipped("cgroupfs not available");
152484
-
152484
-                assert_se(runtime_dir = setup_fake_runtime_dir());
152484
-        }),
152484
+        assert_se(runtime_dir = setup_fake_runtime_dir());
152484
+        return EXIT_SUCCESS;
152484
+}
152484
 
152484
-        /* no outro */);
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-mountpoint-util.c b/src/test/test-mountpoint-util.c
152484
index 9515d8cf7b..102d2850bf 100644
152484
--- a/src/test/test-mountpoint-util.c
152484
+++ b/src/test/test-mountpoint-util.c
152484
@@ -298,17 +298,19 @@ TEST(fd_is_mount_point) {
152484
         assert_se(IN_SET(fd_is_mount_point(fd, "root/", 0), -ENOENT, 0));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_DEBUG,
152484
-        ({
152484
-                /* let's move into our own mount namespace with all propagation from the host turned off, so
152484
-                 * that /proc/self/mountinfo is static and constant for the whole time our test runs. */
152484
-                if (unshare(CLONE_NEWNS) < 0) {
152484
-                        if (!ERRNO_IS_PRIVILEGE(errno))
152484
-                                return log_error_errno(errno, "Failed to detach mount namespace: %m");
152484
-
152484
-                        log_notice("Lacking privilege to create separate mount namespace, proceeding in originating mount namespace.");
152484
-                } else
152484
-                        assert_se(mount(NULL, "/", NULL, MS_PRIVATE | MS_REC, NULL) >= 0);
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        /* let's move into our own mount namespace with all propagation from the host turned off, so
152484
+         * that /proc/self/mountinfo is static and constant for the whole time our test runs. */
152484
+
152484
+        if (unshare(CLONE_NEWNS) < 0) {
152484
+                if (!ERRNO_IS_PRIVILEGE(errno))
152484
+                        return log_error_errno(errno, "Failed to detach mount namespace: %m");
152484
+
152484
+                log_notice("Lacking privilege to create separate mount namespace, proceeding in originating mount namespace.");
152484
+        } else
152484
+                assert_se(mount(NULL, "/", NULL, MS_PRIVATE | MS_REC, NULL) >= 0);
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-namespace.c b/src/test/test-namespace.c
152484
index 8df5533d6e..f9e34f3bfa 100644
152484
--- a/src/test/test-namespace.c
152484
+++ b/src/test/test-namespace.c
152484
@@ -220,10 +220,11 @@ TEST(protect_kernel_logs) {
152484
         assert_se(wait_for_terminate_and_check("ns-kernellogs", pid, WAIT_LOG) == EXIT_SUCCESS);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
-        ({
152484
-                if (!have_namespaces())
152484
-                        return log_tests_skipped("Don't have namespace support");
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        if (!have_namespaces())
152484
+                return log_tests_skipped("Don't have namespace support");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-proc-cmdline.c b/src/test/test-proc-cmdline.c
152484
index 1c8c9b80b7..064b4d838f 100644
152484
--- a/src/test/test-proc-cmdline.c
152484
+++ b/src/test/test-proc-cmdline.c
152484
@@ -247,10 +247,11 @@ TEST(proc_cmdline_key_startswith) {
152484
         assert_se(!proc_cmdline_key_startswith("foo-bar", "foo_xx"));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
-        ({
152484
-                if (access("/proc/cmdline", R_OK) < 0 && ERRNO_IS_PRIVILEGE(errno))
152484
-                        return log_tests_skipped("can't read /proc/cmdline");
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        if (access("/proc/cmdline", R_OK) < 0 && ERRNO_IS_PRIVILEGE(errno))
152484
+                return log_tests_skipped("can't read /proc/cmdline");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-process-util.c b/src/test/test-process-util.c
152484
index 06a640b1cc..8661934929 100644
152484
--- a/src/test/test-process-util.c
152484
+++ b/src/test/test-process-util.c
152484
@@ -895,4 +895,9 @@ TEST(set_oom_score_adjust) {
152484
         assert_se(b == a);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, log_show_color(true), /* no outro */);
152484
+static int intro(void) {
152484
+        log_show_color(true);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-sd-hwdb.c b/src/test/test-sd-hwdb.c
152484
index 7961c17c4a..88992a6c2b 100644
152484
--- a/src/test/test-sd-hwdb.c
152484
+++ b/src/test/test-sd-hwdb.c
152484
@@ -52,12 +52,15 @@ TEST(basic_enumerate) {
152484
         assert_se(len1 == len2);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_DEBUG,
152484
-        ({
152484
-                _cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb = NULL;
152484
-                int r = sd_hwdb_new(&hwdb);
152484
-                if (r == -ENOENT || ERRNO_IS_PRIVILEGE(r))
152484
-                        return log_tests_skipped_errno(r, "cannot open hwdb");
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        _cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb = NULL;
152484
+        int r;
152484
+
152484
+        r = sd_hwdb_new(&hwdb);
152484
+        if (r == -ENOENT || ERRNO_IS_PRIVILEGE(r))
152484
+                return log_tests_skipped_errno(r, "cannot open hwdb");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-serialize.c b/src/test/test-serialize.c
152484
index fb04b3e7fa..9aeb6c5920 100644
152484
--- a/src/test/test-serialize.c
152484
+++ b/src/test/test-serialize.c
152484
@@ -10,7 +10,7 @@
152484
 #include "tests.h"
152484
 #include "tmpfile-util.h"
152484
 
152484
-char long_string[LONG_LINE_MAX+1];
152484
+static char long_string[LONG_LINE_MAX+1];
152484
 
152484
 TEST(serialize_item) {
152484
         _cleanup_(unlink_tempfilep) char fn[] = "/tmp/test-serialize.XXXXXX";
152484
@@ -189,10 +189,10 @@ TEST(serialize_environment) {
152484
         assert_se(strv_equal(env, env2));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
-        ({
152484
-                memset(long_string, 'x', sizeof(long_string)-1);
152484
-                char_array_0(long_string);
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        memset(long_string, 'x', sizeof(long_string)-1);
152484
+        char_array_0(long_string);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-sleep.c b/src/test/test-sleep.c
152484
index 183ad4f7b7..f56e7e0167 100644
152484
--- a/src/test/test-sleep.c
152484
+++ b/src/test/test-sleep.c
152484
@@ -118,10 +118,11 @@ TEST(sleep) {
152484
         log_info("Suspend-then-Hibernate configured and possible: %s", r >= 0 ? yes_no(r) : strerror_safe(r));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_DEBUG,
152484
-        ({
152484
-                if (getuid() != 0)
152484
-                        log_warning("This program is unlikely to work for unprivileged users");
152484
-        }),
152484
-        /* no outro */);
152484
+static int intro(void) {
152484
+        if (getuid() != 0)
152484
+                log_warning("This program is unlikely to work for unprivileged users");
152484
+
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-stat-util.c b/src/test/test-stat-util.c
152484
index 0f7b3ca3ce..2965ee679f 100644
152484
--- a/src/test/test-stat-util.c
152484
+++ b/src/test/test-stat-util.c
152484
@@ -236,4 +236,9 @@ TEST(dir_is_empty) {
152484
         assert_se(dir_is_empty_at(AT_FDCWD, empty_dir) > 0);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, log_show_color(true), /* no outro */);
152484
+static int intro(void) {
152484
+        log_show_color(true);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-time-util.c b/src/test/test-time-util.c
152484
index 4d0131827e..f21d8b7794 100644
152484
--- a/src/test/test-time-util.c
152484
+++ b/src/test/test-time-util.c
152484
@@ -588,7 +588,7 @@ TEST(map_clock_usec) {
152484
         }
152484
 }
152484
 
152484
-static void setup_test(void) {
152484
+static int intro(void) {
152484
         log_info("realtime=" USEC_FMT "\n"
152484
                  "monotonic=" USEC_FMT "\n"
152484
                  "boottime=" USEC_FMT "\n",
152484
@@ -603,6 +603,8 @@ static void setup_test(void) {
152484
         uintmax_t x = TIME_T_MAX;
152484
         x++;
152484
         assert_se((time_t) x < 0);
152484
+
152484
+        return EXIT_SUCCESS;
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, setup_test(), /* no outro */);
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-unit-file.c b/src/test/test-unit-file.c
152484
index 0f8c25c218..6c9f245c7e 100644
152484
--- a/src/test/test-unit-file.c
152484
+++ b/src/test/test-unit-file.c
152484
@@ -102,4 +102,9 @@ TEST(runlevel_to_target) {
152484
         assert_se(streq_ptr(runlevel_to_target("rd.rescue"), SPECIAL_RESCUE_TARGET));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, log_show_color(true), /* no outro */);
152484
+static int intro(void) {
152484
+        log_show_color(true);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-unit-name.c b/src/test/test-unit-name.c
152484
index 6bde9e090d..1f65407e5f 100644
152484
--- a/src/test/test-unit-name.c
152484
+++ b/src/test/test-unit-name.c
152484
@@ -23,6 +23,10 @@
152484
 #include "user-util.h"
152484
 #include "util.h"
152484
 
152484
+static char *runtime_dir = NULL;
152484
+
152484
+STATIC_DESTRUCTOR_REGISTER(runtime_dir, rm_rf_physical_and_freep);
152484
+
152484
 static void test_unit_name_is_valid_one(const char *name, UnitNameFlags flags, bool expected) {
152484
         log_info("%s ( %s%s%s ): %s",
152484
                  name,
152484
@@ -844,15 +848,12 @@ TEST(unit_name_prefix_equal) {
152484
         assert_se(!unit_name_prefix_equal("a", "a"));
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_INFO,
152484
+static int intro(void) {
152484
+        if (enter_cgroup_subroot(NULL) == -ENOMEDIUM)
152484
+                return log_tests_skipped("cgroupfs not available");
152484
 
152484
-        _cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
152484
-        ({
152484
-                if (enter_cgroup_subroot(NULL) == -ENOMEDIUM)
152484
-                        return log_tests_skipped("cgroupfs not available");
152484
-
152484
-                assert_se(runtime_dir = setup_fake_runtime_dir());
152484
-        }),
152484
+        assert_se(runtime_dir = setup_fake_runtime_dir());
152484
+        return EXIT_SUCCESS;
152484
+}
152484
 
152484
-        /* no outro */);
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);
152484
diff --git a/src/test/test-unit-serialize.c b/src/test/test-unit-serialize.c
152484
index 899fdc000c..5d39176db2 100644
152484
--- a/src/test/test-unit-serialize.c
152484
+++ b/src/test/test-unit-serialize.c
152484
@@ -4,6 +4,10 @@
152484
 #include "service.h"
152484
 #include "tests.h"
152484
 
152484
+static char *runtime_dir = NULL;
152484
+
152484
+STATIC_DESTRUCTOR_REGISTER(runtime_dir, rm_rf_physical_and_freep);
152484
+
152484
 #define EXEC_START_ABSOLUTE \
152484
         "ExecStart 0 /bin/sh \"sh\" \"-e\" \"-x\" \"-c\" \"systemctl --state=failed --no-legend --no-pager >/failed ; systemctl daemon-reload ; echo OK >/testok\""
152484
 #define EXEC_START_RELATIVE \
152484
@@ -48,15 +52,12 @@ TEST(deserialize_exec_command) {
152484
         test_deserialize_exec_command_one(m, "control-command", "ExecWhat 11 /a/b c d e", -EINVAL);
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(
152484
-        LOG_DEBUG,
152484
+static int intro(void) {
152484
+        if (enter_cgroup_subroot(NULL) == -ENOMEDIUM)
152484
+                return log_tests_skipped("cgroupfs not available");
152484
 
152484
-        _cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
152484
-        ({
152484
-                if (enter_cgroup_subroot(NULL) == -ENOMEDIUM)
152484
-                        return log_tests_skipped("cgroupfs not available");
152484
-
152484
-                assert_se(runtime_dir = setup_fake_runtime_dir());
152484
-        }),
152484
+        assert_se(runtime_dir = setup_fake_runtime_dir());
152484
+        return EXIT_SUCCESS;
152484
+}
152484
 
152484
-        /* no outro */);
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_DEBUG, intro, test_nop);
152484
diff --git a/src/test/test-utf8.c b/src/test/test-utf8.c
152484
index a21fcd6fd2..1b31d1f852 100644
152484
--- a/src/test/test-utf8.c
152484
+++ b/src/test/test-utf8.c
152484
@@ -231,4 +231,9 @@ TEST(utf8_to_utf16) {
152484
         }
152484
 }
152484
 
152484
-DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, log_show_color(true), /* no outro */);
152484
+static int intro(void) {
152484
+        log_show_color(true);
152484
+        return EXIT_SUCCESS;
152484
+}
152484
+
152484
+DEFINE_CUSTOM_TEST_MAIN(LOG_INFO, intro, test_nop);