diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index cd95d33bdc..77ae08ebeb 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -287,7 +287,7 @@ class QemuRunner: | |||
287 | self.logger.debug("qemu cmdline used:\n{}".format(cmdline)) | 287 | self.logger.debug("qemu cmdline used:\n{}".format(cmdline)) |
288 | except (IndexError, ValueError): | 288 | except (IndexError, ValueError): |
289 | # Try to get network configuration from runqemu output | 289 | # Try to get network configuration from runqemu output |
290 | match = re.match(r'.*Network configuration: ([0-9.]+)::([0-9.]+):([0-9.]+)$.*', | 290 | match = re.match(r'.*Network configuration: (?:ip=)*([0-9.]+)::([0-9.]+):([0-9.]+)$.*', |
291 | out, re.MULTILINE|re.DOTALL) | 291 | out, re.MULTILINE|re.DOTALL) |
292 | if match: | 292 | if match: |
293 | self.ip, self.server_ip, self.netmask = match.groups() | 293 | self.ip, self.server_ip, self.netmask = match.groups() |