]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemurunner: Show the output of runqemu script
authorMariano Lopez <mariano.lopez@linux.intel.com>
Thu, 22 Oct 2015 13:39:19 +0000 (13:39 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 24 Oct 2015 11:19:57 +0000 (12:19 +0100)
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 <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/utils/qemurunner.py

index 6fe75b8a08584d78525374b47af33bf55cd10b35..bdc6e0a8f849ea58417556514fa1d3da7457a32e 100644 (file)
@@ -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]