From: Juro Bystricky Date: Tue, 12 Sep 2017 19:23:27 +0000 (-0700) Subject: qemurunner.py: wait for PID to appear in procfs X-Git-Tag: 2017-10~244 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d2d069fa9910d1c7a94c898355a63fca03ec5ad8;p=openembedded-core.git qemurunner.py: wait for PID to appear in procfs We need QEMU PID in order to access "/proc//cmdline" Having a valid QEMU PID does not mean we can access the proc entry immediately, we need to wait for the /proc/ to appear before we can access it. Signed-off-by: Juro Bystricky Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 9073315fba..427ae23b1b 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -394,9 +394,10 @@ class QemuRunner: f = open(self.qemu_pidfile, 'r') qemu_pid = f.read() f.close() - #logger.info("qemu_pid: %s" % qemu_pid) - self.qemupid = int(qemu_pid) - return True + qemupid = int(qemu_pid) + if os.path.exists("/proc/" + str(qemupid)): + self.qemupid = qemupid + return True return False def run_serial(self, command, raw=False, timeout=5):