diff options
| -rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 5dc1a136e3..abbc7f7d1f 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
| @@ -192,6 +192,12 @@ class QemuRunner: | |||
| 192 | qmp_file = "." + next(tempfile._get_candidate_names()) | 192 | qmp_file = "." + next(tempfile._get_candidate_names()) |
| 193 | qmp_param = ' -S -qmp unix:./%s,server,wait' % (qmp_file) | 193 | qmp_param = ' -S -qmp unix:./%s,server,wait' % (qmp_file) |
| 194 | qmp_port = self.tmpdir + "/" + qmp_file | 194 | qmp_port = self.tmpdir + "/" + qmp_file |
| 195 | # Create a second socket connection for debugging use, | ||
| 196 | # note this will NOT cause qemu to block waiting for the connection | ||
| 197 | qmp_file2 = "." + next(tempfile._get_candidate_names()) | ||
| 198 | qmp_param += ' -qmp unix:./%s,server,nowait' % (qmp_file2) | ||
| 199 | qmp_port2 = self.tmpdir + "/" + qmp_file2 | ||
| 200 | self.logger.info("QMP Available for connection at %s" % (qmp_port2)) | ||
| 195 | 201 | ||
| 196 | try: | 202 | try: |
| 197 | if self.serial_ports >= 2: | 203 | if self.serial_ports >= 2: |
