summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/runtime/context.py6
1 files changed, 6 insertions, 0 deletions
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):
92 def getTarget(target_type, logger, target_ip, server_ip, **kwargs): 92 def getTarget(target_type, logger, target_ip, server_ip, **kwargs):
93 target = None 93 target = None
94 94
95 if target_ip:
96 target_ip_port = target_ip.split(':')
97 if len(target_ip_port) == 2:
98 target_ip = target_ip_port[0]
99 kwargs['port'] = target_ip_port[1]
100
95 if target_type == 'simpleremote': 101 if target_type == 'simpleremote':
96 target = OESSHTarget(logger, target_ip, server_ip, **kwargs) 102 target = OESSHTarget(logger, target_ip, server_ip, **kwargs)
97 elif target_type == 'qemu': 103 elif target_type == 'qemu':