Addresses https://github.com/systemd/systemd/pull/35752#pullrequestreview-
2523080117.
# 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)