From: Yu Watanabe Date: Sat, 28 Dec 2024 03:06:24 +0000 (+0900) Subject: TEST-74-AUX: add reproducer of issue #35746 X-Git-Tag: v258-rc1~1769 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bc4a6e5cdb8c9d35e2bad88bb932875117ea019;p=thirdparty%2Fsystemd.git TEST-74-AUX: add reproducer of issue #35746 Addresses https://github.com/systemd/systemd/pull/35752#pullrequestreview-2523080117. --- diff --git a/test/units/TEST-74-AUX-UTILS.run.sh b/test/units/TEST-74-AUX-UTILS.run.sh index 83ae352943f..d47550c8016 100755 --- a/test/units/TEST-74-AUX-UTILS.run.sh +++ b/test/units/TEST-74-AUX-UTILS.run.sh @@ -271,6 +271,11 @@ if [[ -e /usr/lib/pam.d/systemd-run0 ]] || [[ -e /etc/pam.d/systemd-run0 ]]; the # Validate when we invoke run0 without a tty, that depending on --pty it either allocates a tty or not assert_neq "$(run0 --pty tty < /dev/null)" "not a tty" assert_eq "$(run0 --pipe tty < /dev/null)" "not a tty" + + # For issue #35746 + for _ in {0..10}; do + run0 /usr/lib/systemd/systemd-pcrlock + done fi # Tests whether intermediate disconnects corrupt us (modified testcase from https://github.com/systemd/systemd/issues/27204)