summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorMikko Rapeli <mikko.rapeli@linaro.org>2023-02-07 11:40:19 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-24 16:41:42 +0000
commit0d3339a23ac6f14cb71440cb30c1fb4a25c33216 (patch)
tree8b024a5b04716aca53ae510a1fe45e8e5bf6fac5 /meta/lib
parent3d32267b526b96ef6751d0dd20aa0e91f4d0363d (diff)
downloadpoky-0d3339a23ac6f14cb71440cb30c1fb4a25c33216.tar.gz
oeqa context.py: fix --target-ip comment to include ssh port number
Providing ssh port number is supported too with "--target-ip 192.168.0.10:22". (From OE-Core rev: 4a9bf2d4693fd9e6eb2186a39e50c7e1630fb823) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 637919b9df0abc06da5b2f9b389cf25376bd6b7c) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/runtime/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py
index d707ab263a..8a0dbd0736 100644
--- a/meta/lib/oeqa/runtime/context.py
+++ b/meta/lib/oeqa/runtime/context.py
@@ -67,11 +67,11 @@ class OERuntimeTestContextExecutor(OETestContextExecutor):
67 % self.default_target_type) 67 % self.default_target_type)
68 runtime_group.add_argument('--target-ip', action='store', 68 runtime_group.add_argument('--target-ip', action='store',
69 default=self.default_target_ip, 69 default=self.default_target_ip,
70 help="IP address of device under test, default: %s" \ 70 help="IP address and optionally ssh port (default 22) of device under test, for example '192.168.0.7:22'. Default: %s" \
71 % self.default_target_ip) 71 % self.default_target_ip)
72 runtime_group.add_argument('--server-ip', action='store', 72 runtime_group.add_argument('--server-ip', action='store',
73 default=self.default_target_ip, 73 default=self.default_target_ip,
74 help="IP address of device under test, default: %s" \ 74 help="IP address of the test host from test target machine, default: %s" \
75 % self.default_server_ip) 75 % self.default_server_ip)
76 76
77 runtime_group.add_argument('--host-dumper-dir', action='store', 77 runtime_group.add_argument('--host-dumper-dir', action='store',