From: Mariano Lopez Date: Thu, 22 Oct 2015 13:39:19 +0000 (+0000) Subject: qemurunner: Show the output of runqemu script X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~28546 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=751a3fec83792037aff23c8cca1bc60664f7b581;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 6fe75b8a085..bdc6e0a8f84 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]