]> 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)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 9 Apr 2019 15:04:04 +0000 (16:04 +0100)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/utils/qemurunner.py

index 49020c1e636d1560cd698f17c5acd0d230b0044a..1abb2c1b6cbf1be70cda80997802a8891f9d8a67 100644 (file)
@@ -329,7 +329,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)