From e05b125c9c8203ed0b9d1b72b025a6f026a7c1c6 Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Fri, 24 Sep 2021 14:20:27 -0400 Subject: [PATCH] qemuzephyrrunner.py: use os._exit instead of sys.exit sys.exit(0) can cause an error to be reported when the child exits, even though not an error. Since this is a child process, os._exit(0) is the proper way to exit and not cause this issue. Signed-off-by: Jon Mason Signed-off-by: Naveen Saini --- lib/oeqa/utils/qemuzephyrrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oeqa/utils/qemuzephyrrunner.py b/lib/oeqa/utils/qemuzephyrrunner.py index a1ed30b..7b486ce 100644 --- a/lib/oeqa/utils/qemuzephyrrunner.py +++ b/lib/oeqa/utils/qemuzephyrrunner.py @@ -191,7 +191,7 @@ class QemuZephyrRunner(QemuRunner): r = os.fdopen(r) x = r.read() os.killpg(os.getpgid(self.runqemu.pid), signal.SIGTERM) - sys.exit(0) + os._exit(0) bb.note("qemu started, pid is %s" % self.runqemu.pid) return self.create_socket()