From 8bc4a6e5cdb8c9d35e2bad88bb932875117ea019 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 28 Dec 2024 12:06:24 +0900 Subject: [PATCH] TEST-74-AUX: add reproducer of issue #35746 Addresses https://github.com/systemd/systemd/pull/35752#pullrequestreview-2523080117. --- test/units/TEST-74-AUX-UTILS.run.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/units/TEST-74-AUX-UTILS.run.sh b/test/units/TEST-74-AUX-UTILS.run.sh index 83ae352943..d47550c801 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)