aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/206
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2018-05-25 18:24:51 +0200
committerKevin Wolf <kwolf@redhat.com>2018-05-30 13:31:18 +0200
commit3fb588a0f2c006122c34e1960a15c87ae2b927eb (patch)
treeb0d0648d673393bdb5eed2dd83aa2a063b5ecc72 /tests/qemu-iotests/206
parent0c46a69a5eb8a061134719a0a85898854eb8e533 (diff)
downloadqemu-3fb588a0f2c006122c34e1960a15c87ae2b927eb.zip
qemu-3fb588a0f2c006122c34e1960a15c87ae2b927eb.tar.gz
qemu-3fb588a0f2c006122c34e1960a15c87ae2b927eb.tar.bz2
block/create: Mark blockdev-create stable
We're ready to declare the blockdev-create job stable. This renames the corresponding QMP command from x-blockdev-create to blockdev-create. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Jeff Cody <jcody@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/206')
-rwxr-xr-xtests/qemu-iotests/2062
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/206 b/tests/qemu-iotests/206
index b8cf2e7..128c334 100755
--- a/tests/qemu-iotests/206
+++ b/tests/qemu-iotests/206
@@ -26,7 +26,7 @@ from iotests import imgfmt
iotests.verify_image_format(supported_fmts=['qcow2'])
def blockdev_create(vm, options):
- result = vm.qmp_log('x-blockdev-create', job_id='job0', options=options)
+ result = vm.qmp_log('blockdev-create', job_id='job0', options=options)
if 'return' in result:
assert result['return'] == {}