]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa context.py: fix --target-ip comment to include ssh port number
authorMikko Rapeli <mikko.rapeli@linaro.org>
Tue, 7 Feb 2023 09:40:19 +0000 (11:40 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 7 Feb 2023 22:48:55 +0000 (22:48 +0000)
Providing ssh port number is supported too with
"--target-ip 192.168.0.10:22".

Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runtime/context.py

index 8092dd0baeec93c6d9fd6ac1042abe3b55d9d49f..0c5d1869ab46af77058eda003d9cfe43b8e64dec 100644 (file)
@@ -67,11 +67,11 @@ class OERuntimeTestContextExecutor(OETestContextExecutor):
                 % self.default_target_type)
         runtime_group.add_argument('--target-ip', action='store',
                 default=self.default_target_ip,
-                help="IP address of device under test, default: %s" \
+                help="IP address and optionally ssh port (default 22) of device under test, for example '192.168.0.7:22'. Default: %s" \
                 % self.default_target_ip)
         runtime_group.add_argument('--server-ip', action='store',
                 default=self.default_target_ip,
-                help="IP address of device under test, default: %s" \
+                help="IP address of the test host from test target machine, default: %s" \
                 % self.default_server_ip)
 
         runtime_group.add_argument('--host-dumper-dir', action='store',