summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils')
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index 3d3213d3d3..69fee27511 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -304,7 +304,7 @@ class QemuRunner:
304 self.logger.debug("QMP Port does not exist waiting for it to be created") 304 self.logger.debug("QMP Port does not exist waiting for it to be created")
305 endtime = time.time() + self.runqemutime 305 endtime = time.time() + self.runqemutime
306 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime: 306 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime:
307 self.logger.warning("QMP port does not exist yet!") 307 self.logger.info("QMP port does not exist yet!")
308 time.sleep(0.5) 308 time.sleep(0.5)
309 if not os.path.exists(qmp_port) and self.is_alive(): 309 if not os.path.exists(qmp_port) and self.is_alive():
310 self.logger.warning("QMP Port still does not exist but QEMU is alive") 310 self.logger.warning("QMP Port still does not exist but QEMU is alive")