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.
set -e
TEST_DESCRIPTION="EXTEND_TIMEOUT_USEC=usec start/runtime/stop tests"
-SKIP_INITRD=yes
TEST_NO_QEMU=1
# shellcheck source=test/test-functions
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}"
kernel_params+=("${user_kernel_append[@]}")
fi
- if [[ "$INITRD" ]] && ! get_bool "$SKIP_INITRD"; then
+ if [[ -n "$INITRD" ]]; then
qemu_options+=(-initrd "$INITRD")
fi