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-27 07:24:28 +0000 |
commit | b13c0be4b0e7cd403d8dc50c10ac6aa215b5fc50 (patch) | |
tree | 5226d8a9be5360a0258c97bae5d931d3d1c992be /meta | |
parent | 9846275484fa937ce6dd59a6cdb627c098b0d756 (diff) | |
download | poky-b13c0be4b0e7cd403d8dc50c10ac6aa215b5fc50.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]
(From OE-Core rev: 751a3fec83792037aff23c8cca1bc60664f7b581)
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 6fe75b8a08..bdc6e0a8f8 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -210,6 +210,7 @@ class QemuRunner: | |||
210 | self.stop_thread() | 210 | self.stop_thread() |
211 | return False | 211 | return False |
212 | 212 | ||
213 | logger.info("Output from runqemu:\n%s", self.getOutput(output)) | ||
213 | logger.info("Waiting at most %d seconds for login banner" % self.boottime) | 214 | logger.info("Waiting at most %d seconds for login banner" % self.boottime) |
214 | endtime = time.time() + self.boottime | 215 | endtime = time.time() + self.boottime |
215 | socklist = [self.server_socket] | 216 | socklist = [self.server_socket] |