mirror of https://github.com/xemu-project/xemu.git
qemu-iotests: Log QMP traffic in debug mode
Python tests are already annoying enough to debug. With QMP traffic available it's a little bit easier at least. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
1562047c89
commit
c0088d79a7
|
@ -50,6 +50,7 @@ cachemode = os.environ.get('CACHEMODE')
|
||||||
qemu_default_machine = os.environ.get('QEMU_DEFAULT_MACHINE')
|
qemu_default_machine = os.environ.get('QEMU_DEFAULT_MACHINE')
|
||||||
|
|
||||||
socket_scm_helper = os.environ.get('SOCKET_SCM_HELPER', 'socket_scm_helper')
|
socket_scm_helper = os.environ.get('SOCKET_SCM_HELPER', 'socket_scm_helper')
|
||||||
|
debug = False
|
||||||
|
|
||||||
def qemu_img(*args):
|
def qemu_img(*args):
|
||||||
'''Run qemu-img and return the exit code'''
|
'''Run qemu-img and return the exit code'''
|
||||||
|
@ -134,6 +135,8 @@ class VM(qtest.QEMUQtestMachine):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(VM, self).__init__(qemu_prog, qemu_opts, test_dir=test_dir,
|
super(VM, self).__init__(qemu_prog, qemu_opts, test_dir=test_dir,
|
||||||
socket_scm_helper=socket_scm_helper)
|
socket_scm_helper=socket_scm_helper)
|
||||||
|
if debug:
|
||||||
|
self._debug = True
|
||||||
self._num_drives = 0
|
self._num_drives = 0
|
||||||
|
|
||||||
def add_drive_raw(self, opts):
|
def add_drive_raw(self, opts):
|
||||||
|
@ -318,6 +321,8 @@ def verify_quorum():
|
||||||
def main(supported_fmts=[], supported_oses=['linux']):
|
def main(supported_fmts=[], supported_oses=['linux']):
|
||||||
'''Run tests'''
|
'''Run tests'''
|
||||||
|
|
||||||
|
global debug
|
||||||
|
|
||||||
# We are using TEST_DIR and QEMU_DEFAULT_MACHINE as proxies to
|
# We are using TEST_DIR and QEMU_DEFAULT_MACHINE as proxies to
|
||||||
# indicate that we're not being run via "check". There may be
|
# indicate that we're not being run via "check". There may be
|
||||||
# other things set up by "check" that individual test cases rely
|
# other things set up by "check" that individual test cases rely
|
||||||
|
|
Loading…
Reference in New Issue