mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
test: don't leak local variable to outer scopes
This commit is contained in:
parent
b87209f933
commit
888d0bc074
@ -166,6 +166,7 @@ testcase_megasas2_basic() {
|
||||
return 77
|
||||
fi
|
||||
|
||||
local i
|
||||
local qemu_opts=(
|
||||
"-device megasas-gen2,id=scsi0"
|
||||
"-device megasas-gen2,id=scsi1"
|
||||
@ -192,6 +193,9 @@ testcase_nvme_basic() {
|
||||
return 77
|
||||
fi
|
||||
|
||||
local i
|
||||
local qemu_opts=()
|
||||
|
||||
for i in {0..27}; do
|
||||
qemu_opts+=(
|
||||
"-device nvme,drive=nvme$i,serial=deadbeef$i,num_queues=8"
|
||||
@ -215,7 +219,7 @@ testcase_virtio_scsi_identically_named_partitions() {
|
||||
# and attach them to a virtio-scsi controller
|
||||
local qemu_opts=("-device virtio-scsi-pci,id=scsi0,num_queues=4")
|
||||
local diskpath="${TESTDIR:?}/namedpart0.img"
|
||||
local lodev qemu_timeout
|
||||
local i lodev qemu_timeout
|
||||
|
||||
dd if=/dev/zero of="$diskpath" bs=1M count=18
|
||||
lodev="$(losetup --show -f -P "$diskpath")"
|
||||
@ -325,7 +329,7 @@ testcase_lvm_basic() {
|
||||
fi
|
||||
|
||||
local qemu_opts=("-device ahci,id=ahci0")
|
||||
local diskpath
|
||||
local diskpath i
|
||||
|
||||
# Attach 4 SATA disks to the VM (and set their model and serial fields
|
||||
# to something predictable, so we can refer to them later)
|
||||
|
Loading…
Reference in New Issue
Block a user