3 # Test 'info block' with all kinds of configurations
5 # Copyright (C) 2017 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 owner
=kwolf@redhat.com
25 echo "QA output created by $seq"
27 status
=1 # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
35 # get standard environment, filters and checks
41 _require_drivers null-co
43 if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then
44 _notrun
"Requires a PC machine"
58 ) |
$QEMU -S -display none
-device virtio-scsi-pci
-monitor stdio
"$@" 2>&1
65 do_run_qemu
"$@" | _filter_win32 | _filter_hmp | _filter_qemu |
66 _filter_generated_node_ids | _filter_qom_path
73 removable
="floppy ide-cd scsi-cd"
74 fixed
="ide-hd scsi-hd virtio-blk-pci"
77 echo "=== Empty drives ==="
80 for dev
in $removable; do
81 check_info_block
-device $dev
82 check_info_block
-device $dev,id
=qdev_id
86 echo "=== -blockdev/-device=<node-name> ==="
89 for dev
in $fixed $removable; do
90 check_info_block
-blockdev driver
=null-co
,read-zeroes
=on
,node-name
=null
-device $dev,drive
=null
91 check_info_block
-blockdev driver
=null-co
,read-zeroes
=on
,node-name
=null
-device $dev,drive
=null
,id
=qdev_id
95 echo "=== -drive if=none/-device=<node-name> ==="
98 # This creates two BlockBackends that will show up in 'info block'!
99 # A monitor-owned one from -drive, and anonymous one from -device
100 for dev
in $fixed $removable; do
101 check_info_block
-drive if=none
,driver
=null-co
,read-zeroes
=on
,node-name
=null
-device $dev,drive
=null
,id
=qdev_id
105 echo "=== -drive if=none/-device=<bb-name> (with medium) ==="
108 for dev
in $fixed $removable; do
109 check_info_block
-drive if=none
,driver
=null-co
,read-zeroes
=on
,node-name
=null
-device $dev,drive
=none0
110 check_info_block
-drive if=none
,driver
=null-co
,read-zeroes
=on
,node-name
=null
-device $dev,drive
=none0
,id
=qdev_id
114 echo "=== -drive if=none/-device=<bb-name> (without medium) ==="
117 check_info_block
-drive if=none
119 for dev
in $removable; do
120 check_info_block
-drive if=none
-device $dev,drive
=none0
121 check_info_block
-drive if=none
-device $dev,drive
=none0
,id
=qdev_id
125 echo "=== -drive if=... ==="
128 check_info_block
-drive if=floppy
129 check_info_block
-drive if=floppy
,driver
=null-co
,read-zeroes
=on
131 check_info_block
-drive if=ide
,driver
=null-co
,read-zeroes
=on
132 check_info_block
-drive if=ide
,media
=cdrom
133 check_info_block
-drive if=ide
,driver
=null-co
,read-zeroes
=on
,media
=cdrom
135 check_info_block
-drive if=virtio
,driver
=null-co
,read-zeroes
=on
137 check_info_block
-drive if=pflash
,driver
=null-co
,read-zeroes
=on
,size
=1M