3 # Test automatic deletion of BDSes created by -drive/drive_add
5 # Copyright (C) 2013 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"
29 status
=1 # failure is the default!
31 # get standard environment, filters and checks
38 # Because anything other than 16 would change the output of query-block
39 _unsupported_imgopts
'refcount_bits=\([^1]\|.\([^6]\|$\)\)'
41 function do_run_qemu
()
44 $QEMU -nographic -qmp-pretty stdio
-serial none
"$@"
48 # Remove QMP events from (pretty-printed) output. Doesn't handle
49 # nested dicts correctly, but we don't get any of those in this test.
52 tr '\n' '\t' |
sed -e \
53 's/{\s*"timestamp":\s*{[^}]*},\s*"event":[^,}]*\(,\s*"data":\s*{[^}]*}\)\?\s*}\s*//g' \
59 do_run_qemu
"$@" 2>&1 | _filter_testdir | _filter_qmp | _filter_qemu \
60 |
sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g' \
61 | _filter_generated_node_ids | _filter_qmp_events
69 echo === -drive/-device and device_del
===
72 run_qemu
-drive file=$TEST_IMG,format
=$IMGFMT,if=none
,id
=disk
-device virtio-blk
,drive
=disk
,id
=virtio0
<<EOF
73 { "execute": "qmp_capabilities" }
74 { "execute": "query-block" }
75 { "execute": "device_del", "arguments": { "id": "virtio0" } }
76 { "execute": "system_reset" }
77 { "execute": "query-block" }
82 echo === -drive/device_add and device_del
===
85 run_qemu
-drive file=$TEST_IMG,format
=$IMGFMT,if=none
,id
=disk
<<EOF
86 { "execute": "qmp_capabilities" }
87 { "execute": "query-block" }
88 { "execute": "device_add",
89 "arguments": { "driver": "virtio-blk", "drive": "disk",
91 { "execute": "device_del", "arguments": { "id": "virtio0" } }
92 { "execute": "system_reset" }
93 { "execute": "query-block" }
98 echo === drive_add
/device_add and device_del
===
102 { "execute": "qmp_capabilities" }
103 { "execute": "human-monitor-command",
104 "arguments": { "command-line": "drive_add 0 file=$TEST_IMG,format=$IMGFMT,if=none,id=disk" } }
105 { "execute": "query-block" }
106 { "execute": "device_add",
107 "arguments": { "driver": "virtio-blk", "drive": "disk",
109 { "execute": "device_del", "arguments": { "id": "virtio0" } }
110 { "execute": "system_reset" }
111 { "execute": "query-block" }
112 { "execute": "quit" }
116 echo === blockdev_add
/device_add and device_del
===
120 { "execute": "qmp_capabilities" }
121 { "execute": "blockdev-add",
128 "filename": "$TEST_IMG"
133 { "execute": "query-block" }
134 { "execute": "device_add",
135 "arguments": { "driver": "virtio-blk", "drive": "disk",
137 { "execute": "device_del", "arguments": { "id": "virtio0" } }
138 { "execute": "system_reset" }
139 { "execute": "query-block" }
140 { "execute": "quit" }