mirror of
https://github.com/systemd/systemd.git
synced 2025-01-09 01:18:19 +03:00
5ab2f737cd
To get rid of some boilerplate.
15 lines
398 B
Bash
Executable File
15 lines
398 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
TEST_DESCRIPTION="Test Soft-Rebooting"
|
|
# We temporarily remount rootfs read-only, so ignore any missing coverage
|
|
IGNORE_MISSING_COVERAGE=yes
|
|
# Prevent shutdown in test suite, the expect script does that manually.
|
|
TEST_SKIP_SHUTDOWN=yes
|
|
|
|
# shellcheck source=test/test-functions
|
|
. "$TEST_BASE_DIR/test-functions"
|
|
|
|
do_test "$@"
|