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"
28 status
=1 # failure is the default!
30 # get standard environment, filters and checks
37 # Because anything other than 16 would change the output of query-block
38 _unsupported_imgopts
'refcount_bits=\([^1]\|.\([^6]\|$\)\)'
40 function do_run_qemu
()
43 $QEMU -nographic -qmp-pretty stdio
-serial none
"$@"
47 # Remove QMP events from (pretty-printed) output. Doesn't handle
48 # nested dicts correctly, but we don't get any of those in this test.
51 tr '\n' '\t' |
sed -e \
52 's/{\s*"timestamp":\s*{[^}]*},\s*"event":[^,}]*\(,\s*"data":\s*{[^}]*}\)\?\s*}\s*//g' \
58 do_run_qemu
"$@" 2>&1 | _filter_testdir | _filter_qmp | _filter_qemu \
59 |
sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g' \
60 | _filter_generated_node_ids | _filter_qmp_events
68 echo === -drive/-device and device_del
===
71 run_qemu
-drive file=$TEST_IMG,format
=$IMGFMT,if=none
,id
=disk
-device virtio-blk
,drive
=disk
,id
=virtio0
<<EOF
72 { "execute": "qmp_capabilities" }
73 { "execute": "query-block" }
74 { "execute": "device_del", "arguments": { "id": "virtio0" } }
75 { "execute": "system_reset" }
76 { "execute": "query-block" }
81 echo === -drive/device_add and device_del
===
84 run_qemu
-drive file=$TEST_IMG,format
=$IMGFMT,if=none
,id
=disk
<<EOF
85 { "execute": "qmp_capabilities" }
86 { "execute": "query-block" }
87 { "execute": "device_add",
88 "arguments": { "driver": "virtio-blk", "drive": "disk",
90 { "execute": "device_del", "arguments": { "id": "virtio0" } }
91 { "execute": "system_reset" }
92 { "execute": "query-block" }
97 echo === drive_add
/device_add and device_del
===
101 { "execute": "qmp_capabilities" }
102 { "execute": "human-monitor-command",
103 "arguments": { "command-line": "drive_add 0 file=$TEST_IMG,format=$IMGFMT,if=none,id=disk" } }
104 { "execute": "query-block" }
105 { "execute": "device_add",
106 "arguments": { "driver": "virtio-blk", "drive": "disk",
108 { "execute": "device_del", "arguments": { "id": "virtio0" } }
109 { "execute": "system_reset" }
110 { "execute": "query-block" }
111 { "execute": "quit" }
115 echo === blockdev_add
/device_add and device_del
===
119 { "execute": "qmp_capabilities" }
120 { "execute": "blockdev-add",
127 "filename": "$TEST_IMG"
132 { "execute": "query-named-block-nodes" }
133 { "execute": "device_add",
134 "arguments": { "driver": "virtio-blk", "drive": "disk",
136 { "execute": "device_del", "arguments": { "id": "virtio0" } }
137 { "execute": "system_reset" }
138 { "execute": "query-named-block-nodes" }
139 { "execute": "quit" }