From: Aníbal Limón Date: Fri, 2 Jun 2017 16:11:03 +0000 (-0500) Subject: oeqa/runtime/context.py: Add support to specify port in target_ip X-Git-Tag: uninative-1.7~635 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=7fe4c074611eb21abdf811d8f216d4df7ab6a3ea;p=openembedded-core.git oeqa/runtime/context.py: Add support to specify port in target_ip Signed-off-by: Aníbal Limón Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index c4cd76cf44..0294003fc7 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py @@ -92,6 +92,12 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): def getTarget(target_type, logger, target_ip, server_ip, **kwargs): target = None + if target_ip: + target_ip_port = target_ip.split(':') + if len(target_ip_port) == 2: + target_ip = target_ip_port[0] + kwargs['port'] = target_ip_port[1] + if target_type == 'simpleremote': target = OESSHTarget(logger, target_ip, server_ip, **kwargs) elif target_type == 'qemu':