mirror of https://github.com/xemu-project/xemu.git
iotests: 207: Remove duplication with VM.blockdev_create()
The blockdev_create() function in this test case adds another filter to the logging, but provides otherwise the same functionality as VM.blockdev_create() from iotests.py. Make it a thin wrapper around the iotests.py function. Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
de1ff674a0
commit
6055cdf3d9
|
@ -35,13 +35,7 @@ def filter_hash(qmsg):
|
||||||
return iotests.filter_qmp(qmsg, _filter)
|
return iotests.filter_qmp(qmsg, _filter)
|
||||||
|
|
||||||
def blockdev_create(vm, options):
|
def blockdev_create(vm, options):
|
||||||
result = vm.qmp_log('blockdev-create', job_id='job0', options=options,
|
vm.blockdev_create(options, filters=[iotests.filter_qmp_testfiles, filter_hash])
|
||||||
filters=[iotests.filter_qmp_testfiles, filter_hash])
|
|
||||||
|
|
||||||
if 'return' in result:
|
|
||||||
assert result['return'] == {}
|
|
||||||
vm.run_job('job0')
|
|
||||||
iotests.log("")
|
|
||||||
|
|
||||||
with iotests.FilePath('t.img') as disk_path, \
|
with iotests.FilePath('t.img') as disk_path, \
|
||||||
iotests.VM() as vm:
|
iotests.VM() as vm:
|
||||||
|
|
Loading…
Reference in New Issue