Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2019-07-15' into staging
[qemu/ar7.git] / tests / qemu-iotests / 173
blob9e2fa2e73cb962be1f62c03e4010330ca3e139af
1 #!/usr/bin/env bash
3 # Test QAPI commands looking up protocol based images with relative
4 # filename backing strings
6 # Copyright (C) 2017 Red Hat, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # creator
22 owner=jcody@redhat.com
24 seq=`basename $0`
25 echo "QA output created by $seq"
27 status=1 # failure is the default!
29 _cleanup()
31 _cleanup_qemu
32 rm -f "${QEMU_TEST_DIR}/image.base" "${QEMU_TEST_DIR}/image.snp1"
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
40 . ./common.qemu
42 _supported_fmt qcow2
43 _supported_proto nfs
45 size=100M
47 BASE_IMG="${TEST_DIR}/image.base"
48 TOP_IMG="${TEST_DIR}/image.snp1"
50 TEST_IMG="${BASE_IMG}" _make_test_img $size
52 TEST_IMG="${TOP_IMG}" _make_test_img $size
54 echo
55 echo === Running QEMU, using block-stream to find backing image ===
56 echo
58 qemu_comm_method="qmp"
59 _launch_qemu -drive file="${BASE_IMG}",if=virtio,id=disk2
60 h=$QEMU_HANDLE
62 _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" "return"
64 _send_qemu_cmd $h "{ 'arguments': {
65 'device': 'disk2',
66 'format': '${IMGFMT}',
67 'mode': 'existing',
68 'snapshot-file': '${TOP_IMG}',
69 'snapshot-node-name': 'snp1'
71 'execute': 'blockdev-snapshot-sync'
72 }" "return"
75 _send_qemu_cmd $h "{ 'arguments': {
76 'backing-file': 'image.base',
77 'device': 'disk2',
78 'image-node-name': 'snp1'
80 'execute': 'change-backing-file'
81 }" "return"
83 _send_qemu_cmd $h "{ 'arguments': {
84 'base': '${BASE_IMG}',
85 'device': 'disk2'
87 'execute': 'block-stream'
88 }" "BLOCK_JOB_COMPLETED"
90 _cleanup_qemu
92 # success, all done
93 echo "*** done"
94 rm -f $seq.full
95 status=0