mirror of
https://github.com/systemd/systemd.git
synced 2025-01-24 06:04:05 +03:00
4c709f3908
We check for homed stuff in the test itself, but this is way too late, since we already started a unit that Requires=systemd-homed.service (testsuite-46.service). For now this doesn't matter, but with #27852 the offending transaction is dropped from the job queue, making the test fail. Spotted in #27852 in Ubuntu CI.
30 lines
769 B
Bash
Executable File
30 lines
769 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
TEST_DESCRIPTION="testing homed"
|
|
|
|
# Skip the qemu version of the test, unless we have btrfs
|
|
(modprobe -nv btrfs && command -v mkfs.btrfs >/dev/null) || TEST_NO_QEMU=1
|
|
|
|
# shellcheck source=test/test-functions
|
|
. "${TEST_BASE_DIR:?}/test-functions"
|
|
|
|
get_bool "${NO_BUILD:-}" && HOMECTL_BIN="homectl" || HOMECTL_BIN="${BUILD_DIR:?}/homectl"
|
|
if ! command -v "$HOMECTL_BIN" >/dev/null; then
|
|
echo "Built without systemd-homed, skipping the test"
|
|
exit 0
|
|
fi
|
|
|
|
# Need loop devices for mounting images
|
|
test_append_files() {
|
|
if ! get_bool "$TEST_NO_QEMU" ; then
|
|
instmods loop =block
|
|
install_dmevent
|
|
install_btrfs
|
|
generate_module_dependencies
|
|
fi
|
|
}
|
|
|
|
do_test "$@"
|