diff --git a/src/test/test-aux-scope.c b/src/test/test-aux-scope.c index 175757b1c1..c6a1d29273 100644 --- a/src/test/test-aux-scope.c +++ b/src/test/test-aux-scope.c @@ -10,6 +10,7 @@ #include "bus-error.h" #include "bus-message.h" #include "bus-wait-for-jobs.h" +#include "daemon-util.h" #include "fd-util.h" #include "log.h" #include "missing_syscall.h" @@ -152,6 +153,10 @@ int main(int argc, char *argv[]) { pids[i] = TAKE_PIDREF(pidref); } + r = sd_notify(false, NOTIFY_READY); + if (r < 0) + return log_error_errno(r, "Failed to send readiness notification: %m"); + r = sd_event_loop(event); if (r < 0) return log_error_errno(r, "Failed to run event loop: %m"); diff --git a/test/units/testsuite-07.aux-scope.sh b/test/units/testsuite-07.aux-scope.sh index 41c0617d4d..8e2a99ce02 100755 --- a/test/units/testsuite-07.aux-scope.sh +++ b/test/units/testsuite-07.aux-scope.sh @@ -11,7 +11,7 @@ if ! grep -q pidfd_open /proc/kallsyms; then fi systemd-run --unit test-aux-scope.service \ - -p Slice=aux.slice -p Type=exec -p TasksMax=99 -p CPUWeight=199 -p IPAccounting=yes \ + --service-type notify -p Slice=aux.slice -p TasksMax=99 -p CPUWeight=199 -p IPAccounting=yes \ /usr/lib/systemd/tests/unit-tests/manual/test-aux-scope kill -s USR1 "$(systemctl show --value --property MainPID test-aux-scope.service)"