virtio-ccw-input: fix description
[qemu/ar7.git] / tests / qemu-iotests / 299
blobe129c7f7cb9a56ba4207460867f4c9f8576107cf
1 #!/usr/bin/env python3
3 # Test shutdown when bitmap is exported through NBD server
5 # Copyright (c) 2020 Virtuozzo International GmbH.
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 import iotests
23 # The test is unrelated to formats, restrict it to qcow2 to avoid extra runs
24 iotests.script_initialize(
25     supported_fmts=['qcow2'],
28 nbd_sock = iotests.file_path('nbd.sock', base_dir=iotests.sock_dir)
29 nbd_uri = 'nbd+unix:///disk?socket=' + nbd_sock
30 size = 1024 * 1024
32 vm = iotests.VM()
33 vm.launch()
35 vm.qmp_log('blockdev-add', **{
36     'node-name': 'disk',
37     'driver': 'null-co',
38     'size': 1024 * 1024,
41 vm.qmp_log('block-dirty-bitmap-add', **{
42     'node': 'disk',
43     'name': 'bitmap0'
46 vm.qmp_log('nbd-server-start', **{
47     'addr': {
48         'type': 'unix',
49         'data': {'path': nbd_sock}
50     }
51 }, filters=[iotests.filter_qmp_testfiles])
53 vm.qmp_log('nbd-server-add', **{
54     'device': 'disk',
55     'writable': True,
56     'bitmap': 'bitmap0'
59 p = iotests.QemuIoInteractive('-f', 'raw', nbd_uri)
60 # wait for connection and check it:
61 iotests.log(p.cmd('read 0 512').rstrip(), filters=[iotests.filter_qemu_io])
63 vm.shutdown()
65 p.close()