1#!/usr/bin/env bash
2# SPDX-License-Identifier: LGPL-2.1-or-later
3set -e
4
5TEST_DESCRIPTION="dm-integrity test"
6
7TEST_NO_NSPAWN=1
8QEMU_TIMEOUT=600
9
10# shellcheck source=test/test-functions
11. "${TEST_BASE_DIR:?}/test-functions"
12
13test_append_files() {(
14
15    instmods loop =block
16    instmods dm_integrity =md
17
18    inst_binary integritysetup
19    inst_binary blkid
20    install_dmevent
21
22    generate_module_dependencies
23
24)}
25
26do_test "$@"
27