summaryrefslogtreecommitdiffstats
path: root/test/units/testsuite-09.sh
blob: cd95660021152bdf5af206bf5a2571c7b10b410a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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