systemd/test/TEST-58-REPART/test.sh

32 lines
703 B
Bash
Raw Normal View History

2021-04-19 15:30:33 +00:00
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
2021-04-19 15:30:33 +00:00
set -e
2021-09-29 18:30:08 +00:00
2021-04-19 15:30:33 +00:00
TEST_DESCRIPTION="test systemd-repart"
2022-11-10 11:33:02 +00:00
IMAGE_NAME="repart"
IMAGE_ADDITIONAL_ROOT_SIZE=1000
2022-11-10 11:33:02 +00:00
TEST_FORCE_NEWIMAGE=1
2021-09-29 18:30:08 +00:00
# shellcheck source=test/test-functions
. "$TEST_BASE_DIR/test-functions"
2021-04-19 15:30:33 +00:00
test_append_files() {
if ! get_bool "${TEST_NO_QEMU:=}"; then
install_dmevent
instmods dm_verity =md
instmods erofs
generate_module_dependencies
image_install veritysetup
image_install -o mksquashfs
image_install -o mkfs.erofs
fi
inst_binary mcopy
image_install mkswap
if command -v openssl >/dev/null 2>&1; then
inst_binary openssl
fi
}
do_test "$@"