diff options
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 9783ff88a5..1f98682f75 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -141,6 +141,8 @@ class QemuRunner: | |||
141 | else: | 141 | else: |
142 | logger.info('Not using kvm for runqemu') | 142 | logger.info('Not using kvm for runqemu') |
143 | launch_cmd += 'tcpserial=%s %s %s %s' % (self.serverport, self.machine, self.rootfs, self.qemuparams) | 143 | launch_cmd += 'tcpserial=%s %s %s %s' % (self.serverport, self.machine, self.rootfs, self.qemuparams) |
144 | logger.info('launchcmd=%s'%(launch_cmd)) | ||
145 | |||
144 | # FIXME: We pass in stdin=subprocess.PIPE here to work around stty | 146 | # FIXME: We pass in stdin=subprocess.PIPE here to work around stty |
145 | # blocking at the end of the runqemu script when using this within | 147 | # blocking at the end of the runqemu script when using this within |
146 | # oe-selftest (this makes stty error out immediately). There ought | 148 | # oe-selftest (this makes stty error out immediately). There ought |
@@ -149,12 +151,12 @@ class QemuRunner: | |||
149 | output = self.runqemu.stdout | 151 | output = self.runqemu.stdout |
150 | 152 | ||
151 | # | 153 | # |
152 | # We need the preexec_fn above so that all runqemu processes can easily be killed | 154 | # We need the preexec_fn above so that all runqemu processes can easily be killed |
153 | # (by killing their process group). This presents a problem if this controlling | 155 | # (by killing their process group). This presents a problem if this controlling |
154 | # process itself is killed however since those processes don't notice the death | 156 | # process itself is killed however since those processes don't notice the death |
155 | # of the parent and merrily continue on. | 157 | # of the parent and merrily continue on. |
156 | # | 158 | # |
157 | # Rather than hack runqemu to deal with this, we add something here instead. | 159 | # Rather than hack runqemu to deal with this, we add something here instead. |
158 | # Basically we fork off another process which holds an open pipe to the parent | 160 | # Basically we fork off another process which holds an open pipe to the parent |
159 | # and also is setpgrp. If/when the pipe sees EOF from the parent dieing, it kills | 161 | # and also is setpgrp. If/when the pipe sees EOF from the parent dieing, it kills |
160 | # the process group. This is like pctrl's PDEATHSIG but for a process group | 162 | # the process group. This is like pctrl's PDEATHSIG but for a process group |