From: Jonas Witschel Date: Thu, 11 Nov 2021 21:25:40 +0000 (+0100) Subject: test: add regression test for systemd-run --scope [--user] X-Git-Tag: v250-rc1~298 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6401279fee182af092f1f5adbf231957d4c8d298;p=thirdparty%2Fsystemd.git test: add regression test for systemd-run --scope [--user] systemd-run --scope --user failed to run in system 249.6, cf. #21297. Add tests for systemd-run --scope and systemd-run --scope --user to make sure this does not regress again. --- diff --git a/test/units/testsuite-20.sh b/test/units/testsuite-20.sh index 17a27d7d7c8..fc87c18c4c1 100755 --- a/test/units/testsuite-20.sh +++ b/test/units/testsuite-20.sh @@ -143,6 +143,23 @@ systemd-run --unit=test20-mainpidsh3.service \ # Test that this failed due to timeout, and not some other error test "$(systemctl show -P Result test20-mainpidsh3.service)" = timeout +# Test that scope units work +systemd-run --scope --unit test20-true.scope /bin/true +test "$(systemctl show -P Result test20-true.scope)" = success + +# Test that user scope units work as well + +runas() { + declare userid=$1 + shift + # shellcheck disable=SC2016 + su "$userid" -s /bin/sh -c 'XDG_RUNTIME_DIR=/run/user/$UID exec "$@"' -- sh "$@" +} + +systemctl start user@4711.service +runas testuser systemd-run --scope --user --unit test20-true.scope /bin/true +test "$(systemctl show -P Result test20-true.scope)" = success + systemd-analyze log-level info echo OK >/testok