]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/utils/qemurunner: Fix typo in previous commit
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 9 Apr 2019 15:04:04 +0000 (16:04 +0100)
committerArmin Kuster <akuster808@gmail.com>
Sat, 18 May 2019 04:19:00 +0000 (21:19 -0700)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/lib/oeqa/utils/qemurunner.py

index 5d1d0cceca8d12df6e66b7272a39811913952e9d..49564f9abce19e1e431bcc4058b186163b3d847f 100644 (file)
@@ -320,7 +320,7 @@ class QemuRunner:
                 self.logger.debug("Target didn't reach login banner in %d seconds (%s)" %
                                   (self.boottime, time.strftime("%D %H:%M:%S")))
             tail = lambda l: "\n".join(l.splitlines()[-25:])
-            bootlog = boolog.decode("utf-8")
+            bootlog = bootlog.decode("utf-8")
             # in case bootlog is empty, use tail qemu log store at self.msg
             lines = tail(bootlog if bootlog else self.msg)
             self.logger.debug("Last 25 lines of text:\n%s" % lines)