mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
26 lines
523 B
Bash
26 lines
523 B
Bash
|
#!/usr/bin/env bash
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
set -eux
|
||
|
set -o pipefail
|
||
|
|
||
|
NUM_REBOOT=4
|
||
|
|
||
|
# shellcheck source=test/units/test-control.sh
|
||
|
. "$(dirname "$0")"/test-control.sh
|
||
|
|
||
|
# shellcheck source=test/units/util.sh
|
||
|
. "$(dirname "$0")"/util.sh
|
||
|
|
||
|
systemd-cat echo "Reboot count: $REBOOT_COUNT"
|
||
|
systemd-cat journalctl --list-boots
|
||
|
|
||
|
run_subtests
|
||
|
|
||
|
if [[ "$REBOOT_COUNT" -lt "$NUM_REBOOT" ]]; then
|
||
|
systemctl_final reboot
|
||
|
elif [[ "$REBOOT_COUNT" -gt "$NUM_REBOOT" ]]; then
|
||
|
assert_not_reached
|
||
|
fi
|
||
|
|
||
|
touch /testok
|