diff options
author | Markus Armbruster <armbru@redhat.com> | 2017-03-21 17:53:28 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-03-28 15:23:23 +0200 |
commit | 79b7a77eda5118f2661d251820d5ee9ee080354a (patch) | |
tree | 81957b65024816fbb0a9750d0693b65cdb9655e2 /tests/qemu-iotests/147 | |
parent | 0491c221547a38b58e41fade9953cd1cf015288b (diff) | |
download | qemu-79b7a77eda5118f2661d251820d5ee9ee080354a.zip qemu-79b7a77eda5118f2661d251820d5ee9ee080354a.tar.gz qemu-79b7a77eda5118f2661d251820d5ee9ee080354a.tar.bz2 |
block: Declare blockdev-add and blockdev-del supported
It's been a long journey, but here we are.
The supported blockdev-add is not compatible to its experimental
predecessors; bump all Since: tags to 2.9.
x-blockdev-remove-medium, x-blockdev-insert-medium and
x-blockdev-change need a bit more work, so leave them alone for now.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/147')
-rwxr-xr-x | tests/qemu-iotests/147 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/147 b/tests/qemu-iotests/147 index 45469c9..cca75c5 100755 --- a/tests/qemu-iotests/147 +++ b/tests/qemu-iotests/147 @@ -57,7 +57,7 @@ class NBDBlockdevAddBase(iotests.QMPTestCase): filename) break - result = self.vm.qmp('x-blockdev-del', node_name='nbd-blockdev') + result = self.vm.qmp('blockdev-del', node_name='nbd-blockdev') self.assert_qmp(result, 'return', {}) |