From: Mariano Lopez Date: Thu, 22 Oct 2015 13:39:19 +0000 (+0000) Subject: qemurunner: Show the output of runqemu script X-Git-Tag: 2015-10~33 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=751a3fec83792037aff23c8cca1bc60664f7b581;p=openembedded-core.git qemurunner: Show the output of runqemu script This change will show runqemu output in the logs when running the runtime tests. This is helpful for debugging testimage errors. [YOCTO #8550] Signed-off-by: Mariano Lopez Signed-off-by: Ross Burton --- diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 6fe75b8a08..bdc6e0a8f8 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -210,6 +210,7 @@ class QemuRunner: self.stop_thread() return False + logger.info("Output from runqemu:\n%s", self.getOutput(output)) logger.info("Waiting at most %d seconds for login banner" % self.boottime) endtime = time.time() + self.boottime socklist = [self.server_socket]