mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-27 05:41:27 +00:00
47 lines
1.2 KiB
Bash
Executable File
47 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
# test 20 successful reboots in a row
|
|
# Author: Martin Pitt <martin.pitt@ubuntu.com>
|
|
# For bisecting/testing you can replace individual binaries in /lib/systemd
|
|
# with --copy /host/path/systemd-foo:/tmp/systemd-replace/systemd-foo
|
|
set -e
|
|
|
|
. `dirname $0`/assert.sh
|
|
|
|
if [ -z "$ADT_REBOOT_MARK" ]; then
|
|
# enable persistent journal
|
|
mkdir -p /var/log/journal
|
|
ADT_REBOOT_MARK=0
|
|
if [ -d /tmp/systemd-replace/ ]; then
|
|
for f in /tmp/systemd-replace/*; do
|
|
echo "Installing $f..."
|
|
rm -f /lib/systemd/$(basename $f)
|
|
cp $f /lib/systemd/
|
|
done
|
|
fi
|
|
else
|
|
journalctl -ab > $ADT_ARTIFACTS/journal.txt
|
|
echo "checking for connection timeouts"
|
|
if journalctl | grep "Connection timed out"; then
|
|
exit 1
|
|
fi
|
|
|
|
echo "checking that polkitd runs"
|
|
pidof polkitd
|
|
|
|
echo "checking that there are no running jobs"
|
|
TIMEOUT=10
|
|
while [ $TIMEOUT -ge 0 ]; do
|
|
running="$(systemctl --no-pager --no-legend list-jobs || true)"
|
|
[ -n "$running" ] || break
|
|
TIMEOUT=$((TIMEOUT - 1))
|
|
done
|
|
assert_eq "$running" ""
|
|
fi
|
|
|
|
if [ "$ADT_REBOOT_MARK" -ge 20 ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo "reboot #$ADT_REBOOT_MARK"
|
|
/tmp/autopkgtest-reboot $(($ADT_REBOOT_MARK + 1))
|