summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorYeoh Ee Peng <ee.peng.yeoh@intel.com>2018-11-22 17:10:43 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 22:27:45 +0000
commit3c7d4f0526340f47f4ebc078363b33d2bae11068 (patch)
treeeacba0e5b9c1441659ad1b1725e00a9b383112eb /meta/lib/oeqa/runtime
parente1b97539c8d00a2918adfbd78c2a9650583a2646 (diff)
downloadpoky-3c7d4f0526340f47f4ebc078363b33d2bae11068.tar.gz
oeqa/qemu & runtime: qemu do not need ip input from external
Qemu do not use the ip input from external. It will retrieve ip from QemuRunner instance and assign ip value. (From OE-Core rev: 14d99dc6c39c963ba3e0d9a30274846bd5369210) (From OE-Core rev: e4990ae01c9f3f486b4b745a2602795e9d496109) Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py
index f3341b2e33..ffb846aace 100644
--- a/meta/lib/oeqa/runtime/context.py
+++ b/meta/lib/oeqa/runtime/context.py
@@ -98,7 +98,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor):
98 if target_type == 'simpleremote': 98 if target_type == 'simpleremote':
99 target = OESSHTarget(logger, target_ip, server_ip, **kwargs) 99 target = OESSHTarget(logger, target_ip, server_ip, **kwargs)
100 elif target_type == 'qemu': 100 elif target_type == 'qemu':
101 target = OEQemuTarget(logger, target_ip, server_ip, **kwargs) 101 target = OEQemuTarget(logger, server_ip, **kwargs)
102 else: 102 else:
103 # XXX: This code uses the old naming convention for controllers and 103 # XXX: This code uses the old naming convention for controllers and
104 # targets, the idea it is to leave just targets as the controller 104 # targets, the idea it is to leave just targets as the controller