qtest/ahci: rename 'Command' to 'CommandHeader'
[qemu/ar7.git] / tests / qemu-iotests / 067
blob0508c696a895e3036ce118b92d7e41dc18afc1ac
1 #!/bin/bash
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/>.
21 # creator
22 owner=kwolf@redhat.com
24 seq=`basename $0`
25 echo "QA output created by $seq"
27 here=`pwd`
28 tmp=/tmp/$$
29 status=1 # failure is the default!
31 # get standard environment, filters and checks
32 . ./common.rc
33 . ./common.filter
35 _supported_fmt qcow2
36 _supported_proto file
37 _supported_os Linux
39 function do_run_qemu()
41 echo Testing: "$@"
42 $QEMU -nographic -qmp-pretty stdio -serial none "$@"
43 echo
46 function run_qemu()
48 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp | _filter_qemu \
49 | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g'
52 size=128M
54 _make_test_img $size
56 echo
57 echo === -drive/-device and device_del ===
58 echo
60 run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk -device virtio-blk-pci,drive=disk,id=virtio0 <<EOF
61 { "execute": "qmp_capabilities" }
62 { "execute": "query-block" }
63 { "execute": "device_del", "arguments": { "id": "virtio0" } }
64 { "execute": "system_reset" }
65 { "execute": "query-block" }
66 { "execute": "quit" }
67 EOF
69 echo
70 echo === -drive/device_add and device_del ===
71 echo
73 run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk <<EOF
74 { "execute": "qmp_capabilities" }
75 { "execute": "query-block" }
76 { "execute": "device_add",
77 "arguments": { "driver": "virtio-blk-pci", "drive": "disk",
78 "id": "virtio0" } }
79 { "execute": "device_del", "arguments": { "id": "virtio0" } }
80 { "execute": "system_reset" }
81 { "execute": "query-block" }
82 { "execute": "quit" }
83 EOF
85 echo
86 echo === drive_add/device_add and device_del ===
87 echo
89 run_qemu <<EOF
90 { "execute": "qmp_capabilities" }
91 { "execute": "human-monitor-command",
92 "arguments": { "command-line": "drive_add 0 file=$TEST_IMG,format=$IMGFMT,if=none,id=disk" } }
93 { "execute": "query-block" }
94 { "execute": "device_add",
95 "arguments": { "driver": "virtio-blk-pci", "drive": "disk",
96 "id": "virtio0" } }
97 { "execute": "device_del", "arguments": { "id": "virtio0" } }
98 { "execute": "system_reset" }
99 { "execute": "query-block" }
100 { "execute": "quit" }
103 echo
104 echo === blockdev_add/device_add and device_del ===
105 echo
107 run_qemu <<EOF
108 { "execute": "qmp_capabilities" }
109 { "execute": "blockdev-add",
110 "arguments": {
111 "options": {
112 "driver": "$IMGFMT",
113 "id": "disk",
114 "file": {
115 "driver": "file",
116 "filename": "$TEST_IMG"
121 { "execute": "query-block" }
122 { "execute": "device_add",
123 "arguments": { "driver": "virtio-blk-pci", "drive": "disk",
124 "id": "virtio0" } }
125 { "execute": "device_del", "arguments": { "id": "virtio0" } }
126 { "execute": "system_reset" }
127 { "execute": "query-block" }
128 { "execute": "quit" }
131 # success, all done
132 echo "*** done"
133 rm -f $seq.full
134 status=0