summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/targetcontrol.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-04 16:59:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-06 15:26:18 +0100
commitef0fe3193eb546757f7c98274b88c4f2eafd7ad0 (patch)
tree4e3222722ee7fa29409fde8e2f614b8d12683a0e /meta/lib/oeqa/targetcontrol.py
parent3d81a56912fb2c6ca1c5aafb93cbc6e2cfea20b3 (diff)
downloadpoky-ef0fe3193eb546757f7c98274b88c4f2eafd7ad0.tar.gz
oeqa: Test failure/cleanup improvements
Currently, if qemu segfaults, the tests merrily continue trying to execute which takes time for them to timeout and is a bit silly. Worse, no logs about the segfault are shown to the user, its silent! This patch tries to unravel the tangled web of issues and ensures that we: * install a SIGCHLD handler which tells the user qemu exited * check if qemu is running, if it isn't fail the test outright * don't leave processes behind in sshcontrol which would hold bitbake.lock and block shutdown (From OE-Core rev: 5c04b1ca1e989f569d5755a646734d01a0c56cae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r--meta/lib/oeqa/targetcontrol.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index 542e259112..edc0d01c1e 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -188,6 +188,9 @@ class QemuTarget(BaseTarget):
188 bb.error("Qemu log output from %s:\n%s" % (self.qemulog, f.read())) 188 bb.error("Qemu log output from %s:\n%s" % (self.qemulog, f.read()))
189 raise bb.build.FuncFailed("%s - FAILED to start qemu - check the task log and the boot log" % self.pn) 189 raise bb.build.FuncFailed("%s - FAILED to start qemu - check the task log and the boot log" % self.pn)
190 190
191 def check(self):
192 return self.runner.is_alive()
193
191 def stop(self): 194 def stop(self):
192 self.runner.stop() 195 self.runner.stop()
193 self.connection = None 196 self.connection = None