From a65de78d5c19264f954cc24b6670f19d18f0c054 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 13 Jan 2025 11:10:09 +0100 Subject: test-process-util: don't run rest of test suite in forked off child We left the test suite running in the child after forking off a temporary child for testing. That's bad. fix it. --- src/test/test-process-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/test/test-process-util.c b/src/test/test-process-util.c index 12bac656e2..48c5f44e01 100644 --- a/src/test/test-process-util.c +++ b/src/test/test-process-util.c @@ -1007,7 +1007,7 @@ TEST(pid_get_start_time) { _cleanup_(pidref_done_sigkill_wait) PidRef child = PIDREF_NULL; - ASSERT_OK(pidref_safe_fork("(stub)", FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_REOPEN_LOG, &child)); + ASSERT_OK_POSITIVE(pidref_safe_fork("(stub)", FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_REOPEN_LOG|FORK_FREEZE, &child)); usec_t start_time2; ASSERT_OK(pidref_get_start_time(&child, &start_time2)); -- cgit v1.2.3