diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2017-01-13 14:33:55 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-19 22:47:22 +0000 |
commit | 81c3d4824af983029e9621fbdb377f4cf9aabb5a (patch) | |
tree | 10f593a4761760c24cad1b66cb645113af2f29f8 /meta/classes/testimage.bbclass | |
parent | de17891185a3b593d8cde50991082f6fd6c209f9 (diff) | |
download | poky-81c3d4824af983029e9621fbdb377f4cf9aabb5a.tar.gz |
oeqa/utils/qemurunner.py: Be sure to stop qemu-system
When runqemu fails, qemu-system process would keep running
and won't be killed, setpgrp() was used when runqemu was
a shell script but it seems it doesn't work always with python.
This would kill qemu-system explicity and to avoid leaving
it behind.
(From OE-Core rev: 9d2b1aa1bcfb2f1933a8eeb9470b4174d5da2f0d)
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/testimage.bbclass')
-rw-r--r-- | meta/classes/testimage.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 770ec801c2..7eb4038d21 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -171,6 +171,8 @@ def testimage_main(d): | |||
171 | bb.plain(msg) | 171 | bb.plain(msg) |
172 | else: | 172 | else: |
173 | bb.fatal("%s - FAILED - check the task log and the ssh log" % pn) | 173 | bb.fatal("%s - FAILED - check the task log and the ssh log" % pn) |
174 | except BlockingIOError as err: | ||
175 | bb.error('runqemu failed, shutting down...') | ||
174 | finally: | 176 | finally: |
175 | signal.signal(signal.SIGTERM, tc.origsigtermhandler) | 177 | signal.signal(signal.SIGTERM, tc.origsigtermhandler) |
176 | target.stop() | 178 | target.stop() |