diff options
author | Yeoh Ee Peng <ee.peng.yeoh@intel.com> | 2018-11-22 17:10:43 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-23 23:35:18 +0000 |
commit | 010c24307b96c233c7b478be00e4df4b1b93184d (patch) | |
tree | 89cb4985656247967f5cae8b008321f67ceffd32 /meta/lib/oeqa/runtime | |
parent | 3786729785f4d5a762d4f8883c7fe8d020e17bf0 (diff) | |
download | poky-010c24307b96c233c7b478be00e4df4b1b93184d.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)
Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index a7f3823996..943e29b0d9 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py | |||
@@ -101,7 +101,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): | |||
101 | if target_type == 'simpleremote': | 101 | if target_type == 'simpleremote': |
102 | target = OESSHTarget(logger, target_ip, server_ip, **kwargs) | 102 | target = OESSHTarget(logger, target_ip, server_ip, **kwargs) |
103 | elif target_type == 'qemu': | 103 | elif target_type == 'qemu': |
104 | target = OEQemuTarget(logger, target_ip, server_ip, **kwargs) | 104 | target = OEQemuTarget(logger, server_ip, **kwargs) |
105 | else: | 105 | else: |
106 | # XXX: This code uses the old naming convention for controllers and | 106 | # XXX: This code uses the old naming convention for controllers and |
107 | # targets, the idea it is to leave just targets as the controller | 107 | # targets, the idea it is to leave just targets as the controller |