On 10/05/2018 07:39 PM, Max Reitz wrote: > This function queries a node; since we cannot do that right now, it > executes query-named-block-nodes and returns the matching node's object. > > Signed-off-by: Max Reitz <[email protected]> > --- > tests/qemu-iotests/iotests.py | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py > index 5c45788dac..604f200600 100644 > --- a/tests/qemu-iotests/iotests.py > +++ b/tests/qemu-iotests/iotests.py > @@ -465,6 +465,13 @@ class VM(qtest.QEMUQtestMachine): > else: > iotests.log(ev) > > + def node_info(self, node_name): > + nodes = self.qmp('query-named-block-nodes') > + for x in nodes['return']: > + if x['node-name'] == node_name: > + return x > + return None > + > > index_re = re.compile(r'([^\[]+)\[([^\]]+)\]') > > Reviewed-by: John Snow <[email protected]> Do we ever want to revisit the idea that our API should not do any pre-filtering and that it's always up to the client to do so? --js
- [Qemu-block] [PATCH v11 00/31] block: Fix some filename gen... Max Reitz
- [Qemu-block] [PATCH v11 03/31] block: Skip implicit no... Max Reitz
- [Qemu-block] [PATCH v11 02/31] block: Use children lis... Max Reitz
- [Qemu-block] [PATCH v11 01/31] block: Use bdrv_refresh... Max Reitz
- [Qemu-block] [PATCH v11 05/31] block: Respect backing ... Max Reitz
- [Qemu-block] [PATCH v11 04/31] block: Add BDS.auto_bac... Max Reitz
- [Qemu-block] [PATCH v11 06/31] iotests.py: Add filter_... Max Reitz
- [Qemu-block] [PATCH v11 07/31] iotests.py: Add node_in... Max Reitz
- Re: [Qemu-block] [PATCH v11 07/31] iotests.py: Add... John Snow
- Re: [Qemu-block] [PATCH v11 07/31] iotests.py: Add... Alberto Garcia
- Re: [Qemu-block] [Qemu-devel] [PATCH v11 07/31] io... Eric Blake
- [Qemu-block] [PATCH v11 11/31] block: bdrv_get_full_ba... Max Reitz
- [Qemu-block] [PATCH v11 13/31] block: Fix bdrv_find_ba... Max Reitz
- [Qemu-block] [PATCH v11 08/31] iotests: Add test for b... Max Reitz
- [Qemu-block] [PATCH v11 12/31] block: Add bdrv_make_ab... Max Reitz
- [Qemu-block] [PATCH v11 09/31] block: Make path_combin... Max Reitz
