mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-04 17:47:03 +03:00
18 lines
338 B
Bash
Executable File
18 lines
338 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
TEST_DESCRIPTION="test systemd-repart"
|
|
|
|
# shellcheck source=test/test-functions
|
|
. "$TEST_BASE_DIR/test-functions"
|
|
|
|
test_append_files() {
|
|
if ! get_bool "${TEST_NO_QEMU:=}"; then
|
|
install_dmevent
|
|
generate_module_dependencies
|
|
fi
|
|
}
|
|
|
|
do_test "$@"
|