tcg: Remove tcg_get_arg_str_i32/64
[qemu/ar7.git] / tests / qemu-iotests / 071
blob92ab991456c8330d1022a3ae1e90c0e5af65cf5f
1 #!/bin/bash
3 # Test case for the QMP blkdebug and blkverify interfaces
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=mreitz@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 _cleanup()
33 _cleanup_test_img
35 trap "_cleanup; exit \$status" 0 1 2 3 15
37 # get standard environment, filters and checks
38 . ./common.rc
39 . ./common.filter
41 _supported_fmt qcow2
42 _supported_proto file
43 _supported_os Linux
45 function do_run_qemu()
47 echo Testing: "$@" | _filter_imgfmt
48 $QEMU -nographic -qmp stdio -serial none "$@"
49 echo
52 function run_qemu()
54 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp | _filter_qemu_io
57 IMG_SIZE=64M
59 echo
60 echo "=== Testing blkverify through filename ==="
61 echo
63 TEST_IMG="$TEST_IMG.base" IMGOPTS="" IMGFMT="raw" _make_test_img $IMG_SIZE |\
64 _filter_imgfmt
65 _make_test_img $IMG_SIZE
66 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base $TEST_IMG" \
67 -c 'read 0 512' -c 'write -P 42 0x38000 512' -c 'read -P 42 0x38000 512' | _filter_qemu_io
69 $QEMU_IO -c 'write -P 42 0 512' "$TEST_IMG" | _filter_qemu_io
71 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base $TEST_IMG" \
72 -c 'read -P 42 0 512' | _filter_qemu_io
74 echo
75 echo "=== Testing blkverify through file blockref ==="
76 echo
78 TEST_IMG="$TEST_IMG.base" IMGOPTS="" IMGFMT="raw" _make_test_img $IMG_SIZE |\
79 _filter_imgfmt
80 _make_test_img $IMG_SIZE
81 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base,file.test.driver=$IMGFMT,file.test.file.filename=$TEST_IMG" \
82 -c 'read 0 512' -c 'write -P 42 0x38000 512' -c 'read -P 42 0x38000 512' | _filter_qemu_io
84 $QEMU_IO -c 'write -P 42 0 512' "$TEST_IMG" | _filter_qemu_io
86 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base $TEST_IMG" \
87 -c 'read -P 42 0 512' | _filter_qemu_io
89 echo
90 echo "=== Testing blkdebug through filename ==="
91 echo
93 $QEMU_IO -c "open -o file.driver=blkdebug,file.inject-error.event=l2_load $TEST_IMG" \
94 -c 'read -P 42 0x38000 512'
96 echo
97 echo "=== Testing blkdebug through file blockref ==="
98 echo
100 $QEMU_IO -c "open -o driver=$IMGFMT,file.driver=blkdebug,file.inject-error.event=l2_load,file.image.filename=$TEST_IMG" \
101 -c 'read -P 42 0x38000 512'
103 echo
104 echo "=== Testing blkdebug on existing block device ==="
105 echo
107 run_qemu <<EOF
108 { "execute": "qmp_capabilities" }
109 { "execute": "blockdev-add",
110 "arguments": {
111 "options": {
112 "node-name": "drive0",
113 "driver": "file",
114 "filename": "$TEST_IMG"
118 { "execute": "blockdev-add",
119 "arguments": {
120 "options": {
121 "driver": "$IMGFMT",
122 "id": "drive0-debug",
123 "file": {
124 "driver": "blkdebug",
125 "image": "drive0",
126 "inject-error": [{
127 "event": "l2_load"
133 { "execute": "human-monitor-command",
134 "arguments": {
135 "command-line": 'qemu-io drive0-debug "read 0 512"'
138 { "execute": "quit" }
141 echo
142 echo "=== Testing blkverify on existing block device ==="
143 echo
145 run_qemu <<EOF
146 { "execute": "qmp_capabilities" }
147 { "execute": "blockdev-add",
148 "arguments": {
149 "options": {
150 "node-name": "drive0",
151 "driver": "$IMGFMT",
152 "file": {
153 "driver": "file",
154 "filename": "$TEST_IMG"
159 { "execute": "blockdev-add",
160 "arguments": {
161 "options": {
162 "driver": "blkverify",
163 "id": "drive0-verify",
164 "test": "drive0",
165 "raw": {
166 "driver": "file",
167 "filename": "$TEST_IMG.base"
172 { "execute": "human-monitor-command",
173 "arguments": {
174 "command-line": 'qemu-io drive0-verify "read 0 512"'
177 { "execute": "quit" }
180 echo
181 echo "=== Testing blkverify on existing raw block device ==="
182 echo
184 run_qemu <<EOF
185 { "execute": "qmp_capabilities" }
186 { "execute": "blockdev-add",
187 "arguments": {
188 "options": {
189 "node-name": "drive0",
190 "driver": "file",
191 "filename": "$TEST_IMG.base"
195 { "execute": "blockdev-add",
196 "arguments": {
197 "options": {
198 "driver": "blkverify",
199 "id": "drive0-verify",
200 "test": {
201 "driver": "$IMGFMT",
202 "file": {
203 "driver": "file",
204 "filename": "$TEST_IMG"
207 "raw": "drive0"
211 { "execute": "human-monitor-command",
212 "arguments": {
213 "command-line": 'qemu-io drive0-verify "read 0 512"'
216 { "execute": "quit" }
219 echo
220 echo "=== Testing blkdebug's set-state through QMP ==="
221 echo
223 run_qemu <<EOF
224 { "execute": "qmp_capabilities" }
225 { "execute": "blockdev-add",
226 "arguments": {
227 "options": {
228 "node-name": "drive0",
229 "driver": "file",
230 "filename": "$TEST_IMG"
234 { "execute": "blockdev-add",
235 "arguments": {
236 "options": {
237 "driver": "$IMGFMT",
238 "id": "drive0-debug",
239 "file": {
240 "driver": "blkdebug",
241 "image": "drive0",
242 "inject-error": [{
243 "event": "read_aio",
244 "state": 42
246 "set-state": [{
247 "event": "write_aio",
248 "new_state": 42
254 { "execute": "human-monitor-command",
255 "arguments": {
256 "command-line": 'qemu-io drive0-debug "read 0 512"'
259 { "execute": "human-monitor-command",
260 "arguments": {
261 "command-line": 'qemu-io drive0-debug "write 0 512"'
264 { "execute": "human-monitor-command",
265 "arguments": {
266 "command-line": 'qemu-io drive0-debug "read 0 512"'
269 { "execute": "quit" }
272 # success, all done
273 echo "*** done"
274 rm -f $seq.full
275 status=0