mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 10:13:34 +08:00
test: drop $SKIP_INITRD
It's pointless nowadays, since we always need an initrd for the test VMs as we require modules that are usually not compiled in the kernel.
This commit is contained in:
parent
25bc469727
commit
93b896e90e
@ -3,7 +3,6 @@
|
||||
set -e
|
||||
|
||||
TEST_DESCRIPTION="EXTEND_TIMEOUT_USEC=usec start/runtime/stop tests"
|
||||
SKIP_INITRD=yes
|
||||
TEST_NO_QEMU=1
|
||||
|
||||
# shellcheck source=test/test-functions
|
||||
|
@ -295,7 +295,6 @@ IS_BUILT_WITH_COVERAGE=$(is_built_with_coverage && echo yes || echo no)
|
||||
|
||||
if get_bool "$IS_BUILT_WITH_ASAN"; then
|
||||
PATH_TO_INIT="$ROOTLIBDIR/systemd-under-asan"
|
||||
SKIP_INITRD="${SKIP_INITRD:-yes}"
|
||||
QEMU_MEM="${QEMU_MEM:-2G}"
|
||||
QEMU_SMP="${QEMU_SMP:-4}"
|
||||
|
||||
@ -577,7 +576,7 @@ run_qemu() {
|
||||
kernel_params+=("${user_kernel_append[@]}")
|
||||
fi
|
||||
|
||||
if [[ "$INITRD" ]] && ! get_bool "$SKIP_INITRD"; then
|
||||
if [[ -n "$INITRD" ]]; then
|
||||
qemu_options+=(-initrd "$INITRD")
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user