mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-01 06:21:52 -06:00
iotests/222: constantly use single quotes for strings
The file use both single and double quotes for strings. Let's be consistent. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20210824083856.17408-28-vsementsov@virtuozzo.com> Signed-off-by: Hanna Reitz <hreitz@redhat.com>
This commit is contained in:
parent
f08ef04371
commit
bb053e4724
1 changed files with 34 additions and 34 deletions
|
@ -30,23 +30,23 @@ iotests.script_initialize(
|
||||||
supported_platforms=['linux'],
|
supported_platforms=['linux'],
|
||||||
)
|
)
|
||||||
|
|
||||||
patterns = [("0x5d", "0", "64k"),
|
patterns = [('0x5d', '0', '64k'),
|
||||||
("0xd5", "1M", "64k"),
|
('0xd5', '1M', '64k'),
|
||||||
("0xdc", "32M", "64k"),
|
('0xdc', '32M', '64k'),
|
||||||
("0xcd", "0x3ff0000", "64k")] # 64M - 64K
|
('0xcd', '0x3ff0000', '64k')] # 64M - 64K
|
||||||
|
|
||||||
overwrite = [("0xab", "0", "64k"), # Full overwrite
|
overwrite = [('0xab', '0', '64k'), # Full overwrite
|
||||||
("0xad", "0x00f8000", "64k"), # Partial-left (1M-32K)
|
('0xad', '0x00f8000', '64k'), # Partial-left (1M-32K)
|
||||||
("0x1d", "0x2008000", "64k"), # Partial-right (32M+32K)
|
('0x1d', '0x2008000', '64k'), # Partial-right (32M+32K)
|
||||||
("0xea", "0x3fe0000", "64k")] # Adjacent-left (64M - 128K)
|
('0xea', '0x3fe0000', '64k')] # Adjacent-left (64M - 128K)
|
||||||
|
|
||||||
zeroes = [("0", "0x00f8000", "32k"), # Left-end of partial-left (1M-32K)
|
zeroes = [('0', '0x00f8000', '32k'), # Left-end of partial-left (1M-32K)
|
||||||
("0", "0x2010000", "32k"), # Right-end of partial-right (32M+64K)
|
('0', '0x2010000', '32k'), # Right-end of partial-right (32M+64K)
|
||||||
("0", "0x3fe0000", "64k")] # overwrite[3]
|
('0', '0x3fe0000', '64k')] # overwrite[3]
|
||||||
|
|
||||||
remainder = [("0xd5", "0x108000", "32k"), # Right-end of partial-left [1]
|
remainder = [('0xd5', '0x108000', '32k'), # Right-end of partial-left [1]
|
||||||
("0xdc", "32M", "32k"), # Left-end of partial-right [2]
|
('0xdc', '32M', '32k'), # Left-end of partial-right [2]
|
||||||
("0xcd", "0x3ff0000", "64k")] # patterns[3]
|
('0xcd', '0x3ff0000', '64k')] # patterns[3]
|
||||||
|
|
||||||
with iotests.FilePath('base.img') as base_img_path, \
|
with iotests.FilePath('base.img') as base_img_path, \
|
||||||
iotests.FilePath('fleece.img') as fleece_img_path, \
|
iotests.FilePath('fleece.img') as fleece_img_path, \
|
||||||
|
@ -58,7 +58,7 @@ with iotests.FilePath('base.img') as base_img_path, \
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
assert qemu_img('create', '-f', iotests.imgfmt, base_img_path, '64M') == 0
|
assert qemu_img('create', '-f', iotests.imgfmt, base_img_path, '64M') == 0
|
||||||
assert qemu_img('create', '-f', "qcow2", fleece_img_path, '64M') == 0
|
assert qemu_img('create', '-f', 'qcow2', fleece_img_path, '64M') == 0
|
||||||
|
|
||||||
for p in patterns:
|
for p in patterns:
|
||||||
qemu_io('-f', iotests.imgfmt,
|
qemu_io('-f', iotests.imgfmt,
|
||||||
|
@ -78,43 +78,43 @@ with iotests.FilePath('base.img') as base_img_path, \
|
||||||
log('--- Setting up Fleecing Graph ---')
|
log('--- Setting up Fleecing Graph ---')
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
src_node = "drive0"
|
src_node = 'drive0'
|
||||||
tgt_node = "fleeceNode"
|
tgt_node = 'fleeceNode'
|
||||||
|
|
||||||
# create tgt_node backed by src_node
|
# create tgt_node backed by src_node
|
||||||
log(vm.qmp("blockdev-add", {
|
log(vm.qmp('blockdev-add', {
|
||||||
"driver": "qcow2",
|
'driver': 'qcow2',
|
||||||
"node-name": tgt_node,
|
'node-name': tgt_node,
|
||||||
"file": {
|
'file': {
|
||||||
"driver": "file",
|
'driver': 'file',
|
||||||
"filename": fleece_img_path,
|
'filename': fleece_img_path,
|
||||||
},
|
},
|
||||||
"backing": src_node,
|
'backing': src_node,
|
||||||
}))
|
}))
|
||||||
|
|
||||||
# Establish COW from source to fleecing node
|
# Establish COW from source to fleecing node
|
||||||
log(vm.qmp("blockdev-backup",
|
log(vm.qmp('blockdev-backup',
|
||||||
device=src_node,
|
device=src_node,
|
||||||
target=tgt_node,
|
target=tgt_node,
|
||||||
sync="none"))
|
sync='none'))
|
||||||
|
|
||||||
log('')
|
log('')
|
||||||
log('--- Setting up NBD Export ---')
|
log('--- Setting up NBD Export ---')
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
nbd_uri = 'nbd+unix:///%s?socket=%s' % (tgt_node, nbd_sock_path)
|
nbd_uri = 'nbd+unix:///%s?socket=%s' % (tgt_node, nbd_sock_path)
|
||||||
log(vm.qmp("nbd-server-start",
|
log(vm.qmp('nbd-server-start',
|
||||||
{"addr": { "type": "unix",
|
{'addr': { 'type': 'unix',
|
||||||
"data": { "path": nbd_sock_path } } }))
|
'data': { 'path': nbd_sock_path } } }))
|
||||||
|
|
||||||
log(vm.qmp("nbd-server-add", device=tgt_node))
|
log(vm.qmp('nbd-server-add', device=tgt_node))
|
||||||
|
|
||||||
log('')
|
log('')
|
||||||
log('--- Sanity Check ---')
|
log('--- Sanity Check ---')
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
for p in patterns + zeroes:
|
for p in patterns + zeroes:
|
||||||
cmd = "read -P%s %s %s" % p
|
cmd = 'read -P%s %s %s' % p
|
||||||
log(cmd)
|
log(cmd)
|
||||||
assert qemu_io_silent('-r', '-f', 'raw', '-c', cmd, nbd_uri) == 0
|
assert qemu_io_silent('-r', '-f', 'raw', '-c', cmd, nbd_uri) == 0
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ with iotests.FilePath('base.img') as base_img_path, \
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
for p in overwrite:
|
for p in overwrite:
|
||||||
cmd = "write -P%s %s %s" % p
|
cmd = 'write -P%s %s %s' % p
|
||||||
log(cmd)
|
log(cmd)
|
||||||
log(vm.hmp_qemu_io(src_node, cmd))
|
log(vm.hmp_qemu_io(src_node, cmd))
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ with iotests.FilePath('base.img') as base_img_path, \
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
for p in patterns + zeroes:
|
for p in patterns + zeroes:
|
||||||
cmd = "read -P%s %s %s" % p
|
cmd = 'read -P%s %s %s' % p
|
||||||
log(cmd)
|
log(cmd)
|
||||||
assert qemu_io_silent('-r', '-f', 'raw', '-c', cmd, nbd_uri) == 0
|
assert qemu_io_silent('-r', '-f', 'raw', '-c', cmd, nbd_uri) == 0
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ with iotests.FilePath('base.img') as base_img_path, \
|
||||||
log('')
|
log('')
|
||||||
|
|
||||||
for p in overwrite + remainder:
|
for p in overwrite + remainder:
|
||||||
cmd = "read -P%s %s %s" % p
|
cmd = 'read -P%s %s %s' % p
|
||||||
log(cmd)
|
log(cmd)
|
||||||
assert qemu_io_silent(base_img_path, '-c', cmd) == 0
|
assert qemu_io_silent(base_img_path, '-c', cmd) == 0
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue