From: Alexander Kanavin Date: Thu, 26 Aug 2021 13:00:18 +0000 (+0200) Subject: qemurunner.py: print output from runqemu/qemu-system in stop() X-Git-Tag: yocto-3.1.11~24 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1732290d4d2147bd9ffd76deaf90650519a6ad3d;p=openembedded-core.git qemurunner.py: print output from runqemu/qemu-system in stop() This is done when starting up qemu has failed, but is not done when qemu started ok, but fails later in QMP communication. Output from runqemu does contain valuable information to find out why, so rather than fix all the QMP fails to include it, let's just print it in stop(). Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie (cherry picked from commit 6e2bf68e4401db747484c2c8ba0f77500b1d2d49) Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 79db2cc247..a9efb849d9 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -435,6 +435,8 @@ class QemuRunner: if self.runqemu.poll() is None: self.logger.debug("Sending SIGKILL to runqemu") os.killpg(os.getpgid(self.runqemu.pid), signal.SIGKILL) + if not self.runqemu.stdout.closed: + self.logger.info("Output from runqemu:\n%s" % self.getOutput(self.runqemu.stdout)) self.runqemu.stdin.close() self.runqemu.stdout.close() self.runqemu_exited = True