diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2015-10-22 13:39:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-24 12:19:57 +0100 |
commit | 751a3fec83792037aff23c8cca1bc60664f7b581 (patch) | |
tree | 05a7365d8f6be90624a04e64f3978d33f465c607 /meta/lib | |
parent | 0611321c9d6663493b37c33dea51e05511db4fbe (diff) | |
download | openembedded-core-contrib-751a3fec83792037aff23c8cca1bc60664f7b581.tar.gz |
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 <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 1 |
1 files changed, 1 insertions, 0 deletions
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] |