]> Git Repo - qemu.git/blame - tests/qemu-iotests/067
tests: virtio-9p: add walk operation test
[qemu.git] / tests / qemu-iotests / 067
CommitLineData
a9b43397
KW
1#!/bin/bash
2#
3# Test automatic deletion of BDSes created by -drive/drive_add
4#
5# Copyright (C) 2013 Red Hat, Inc.
6#
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.
11#
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.
16#
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/>.
19#
20
21# creator
22[email protected]
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
27here=`pwd`
a9b43397
KW
28status=1 # failure is the default!
29
30# get standard environment, filters and checks
31. ./common.rc
32. ./common.filter
33
34_supported_fmt qcow2
35_supported_proto file
36_supported_os Linux
5262caa7
HR
37# Because anything other than 16 would change the output of query-block
38_unsupported_imgopts 'refcount_bits=\([^1]\|.\([^6]\|$\)\)'
a9b43397
KW
39
40function do_run_qemu()
41{
42 echo Testing: "$@"
2389eeae 43 $QEMU -nographic -qmp-pretty stdio -serial none "$@"
a9b43397
KW
44 echo
45}
46
f436c941
SS
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.
49_filter_qmp_events()
50{
51 tr '\n' '\t' | sed -e \
52 's/{\s*"timestamp":\s*{[^}]*},\s*"event":[^,}]*\(,\s*"data":\s*{[^}]*}\)\?\s*}\s*//g' \
53 | tr '\t' '\n'
54}
55
a9b43397
KW
56function run_qemu()
57{
4dd7b8d3 58 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp | _filter_qemu \
15489c76 59 | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g' \
f436c941 60 | _filter_generated_node_ids | _filter_qmp_events
a9b43397
KW
61}
62
63size=128M
64
65_make_test_img $size
66
67echo
68echo === -drive/-device and device_del ===
69echo
70
2711fd33 71run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk -device virtio-blk,drive=disk,id=virtio0 <<EOF
a9b43397
KW
72{ "execute": "qmp_capabilities" }
73{ "execute": "query-block" }
74{ "execute": "device_del", "arguments": { "id": "virtio0" } }
75{ "execute": "system_reset" }
76{ "execute": "query-block" }
77{ "execute": "quit" }
78EOF
79
80echo
81echo === -drive/device_add and device_del ===
82echo
83
84run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk <<EOF
85{ "execute": "qmp_capabilities" }
86{ "execute": "query-block" }
87{ "execute": "device_add",
2711fd33 88 "arguments": { "driver": "virtio-blk", "drive": "disk",
a9b43397
KW
89 "id": "virtio0" } }
90{ "execute": "device_del", "arguments": { "id": "virtio0" } }
91{ "execute": "system_reset" }
92{ "execute": "query-block" }
93{ "execute": "quit" }
94EOF
95
96echo
97echo === drive_add/device_add and device_del ===
98echo
99
100run_qemu <<EOF
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",
2711fd33 106 "arguments": { "driver": "virtio-blk", "drive": "disk",
a9b43397
KW
107 "id": "virtio0" } }
108{ "execute": "device_del", "arguments": { "id": "virtio0" } }
109{ "execute": "system_reset" }
110{ "execute": "query-block" }
111{ "execute": "quit" }
112EOF
113
114echo
115echo === blockdev_add/device_add and device_del ===
116echo
117
118run_qemu <<EOF
119{ "execute": "qmp_capabilities" }
120{ "execute": "blockdev-add",
121 "arguments": {
0153d2f5
KW
122 "driver": "$IMGFMT",
123 "node-name": "disk",
124 "file": {
125 "driver": "file",
126 "filename": "$TEST_IMG"
a9b43397
KW
127 }
128 }
129 }
522ce4ec 130{ "execute": "query-named-block-nodes" }
a9b43397 131{ "execute": "device_add",
2711fd33 132 "arguments": { "driver": "virtio-blk", "drive": "disk",
a9b43397
KW
133 "id": "virtio0" } }
134{ "execute": "device_del", "arguments": { "id": "virtio0" } }
135{ "execute": "system_reset" }
522ce4ec 136{ "execute": "query-named-block-nodes" }
a9b43397
KW
137{ "execute": "quit" }
138EOF
139
140# success, all done
141echo "*** done"
142rm -f $seq.full
143status=0
This page took 0.213917 seconds and 4 git commands to generate.