2 QEMU development and testing library.
4 This library provides a few high-level classes for driving QEMU from a
5 test suite, not intended for production use.
7 | QEMUQtestProtocol: send/receive qtest messages.
8 | QEMUMachine: Configure and Boot a QEMU VM
9 | +-- QEMUQtestMachine: VM class, with a qtest socket.
13 # Copyright (C) 2020-2021 John Snow for Red Hat Inc.
14 # Copyright (C) 2015-2016 Red Hat Inc.
15 # Copyright (C) 2012 IBM Corp.
21 # This work is licensed under the terms of the GNU GPL, version 2. See
22 # the COPYING file in the top-level directory.
25 # pylint: disable=import-error
26 # see: https://github.com/PyCQA/pylint/issues/3624
27 # see: https://github.com/PyCQA/pylint/issues/3651
28 from .machine import QEMUMachine
29 from .qtest import QEMUQtestMachine, QEMUQtestProtocol