diff options
author | Kevin Wolf <kwolf@redhat.com> | 2016-03-22 20:20:29 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-05-19 16:45:31 +0200 |
commit | 79c719b755134da3dd2ba2a63a9a7db765f68e53 (patch) | |
tree | 8978ce44a5d0e8c3061bf699b03cf06c1b1710a9 /tests/qemu-iotests/096 | |
parent | 7c8eece45b10fc9b716850345118ed6fa8d17887 (diff) |
block: Don't return throttling info in query-named-block-nodes
query-named-block-nodes should not return information that is related
to the attached BlockBackend rather than the node itself, so throttling
information needs to be removed from it.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/096')
-rw-r--r-- | tests/qemu-iotests/096 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/096 b/tests/qemu-iotests/096 index e34204b8ff..aeeb3753cf 100644 --- a/tests/qemu-iotests/096 +++ b/tests/qemu-iotests/096 @@ -45,8 +45,9 @@ class TestLiveSnapshot(iotests.QMPTestCase): os.remove(self.target_img) def checkConfig(self, active_layer): - result = self.vm.qmp('query-named-block-nodes') + result = self.vm.qmp('query-block') for r in result['return']: + r = r['inserted'] if r['node-name'] == active_layer: self.assertEqual(r['group'], self.group) self.assertEqual(r['iops'], self.iops) |