mirror of
https://github.com/systemd/systemd.git
synced 2024-10-31 07:51:21 +03:00
d9e606e89f
Building custom images for each test takes a lot of time. Build the default one, and if the test needs incompatible changes just copy it and extend it instead.
18 lines
283 B
Bash
Executable File
18 lines
283 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
TEST_DESCRIPTION="UDEV ID_RENAMING property"
|
|
IMAGE_NAME="udev-id-renaming"
|
|
TEST_NO_NSPAWN=1
|
|
|
|
. $TEST_BASE_DIR/test-functions
|
|
QEMU_TIMEOUT=300
|
|
|
|
test_append_files() {
|
|
(
|
|
instmods dummy
|
|
generate_module_dependencies
|
|
)
|
|
}
|
|
|
|
do_test "$@" 29
|