From faf85728ed9a5a3af336f243f6f3567c773159cf Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 23 Jul 2015 22:59:50 +0100 Subject: oeqa/qemurunner: don't assume hostname starts with qemu It's possible to customise the hostname trivially so don't assume that the hostname hasn't been configured. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/qemurunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index a15990eaa8..59c9934377 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -137,7 +137,7 @@ class QemuRunner: if data: self.log(data) self.bootlog += data - if re.search("qemu.* login:", self.bootlog): + if re.search(".* login:", self.bootlog): stopread = True reachedlogin = True logging.info("Reached login banner") -- cgit 1.2.3-korg