mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
tests/acceptance/virtiofs_submounts: required space between IP and port
AFAICT, there should not be a situation where IP and port do not have at least one whitespace character separating them. This may be true for other '\s*' patterns in the same regex too. Signed-off-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210203172357.1422425-10-crosa@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
c0d1681e50
commit
d7f57c25e1
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class VirtiofsSubmountsTest(BootLinux):
|
||||||
command_line='info usernet')
|
command_line='info usernet')
|
||||||
for line in res.split('\r\n'):
|
for line in res.split('\r\n'):
|
||||||
match = \
|
match = \
|
||||||
re.search(r'TCP.HOST_FORWARD.*127\.0\.0\.1\s*(\d+)\s+10\.',
|
re.search(r'TCP.HOST_FORWARD.*127\.0\.0\.1\s+(\d+)\s+10\.',
|
||||||
line)
|
line)
|
||||||
if match is not None:
|
if match is not None:
|
||||||
port = int(match[1])
|
port = int(match[1])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue