aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2017-11-17 16:07:13 +0200
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>2018-04-16 09:54:20 +0300
commitde56a96a8bd6359c1dfcf9d1d5d70b4905373516 (patch)
treea6968587247cf90dd39af7e280dc75a2cf92a1d3
parentf233e96eaf55f48608ab857e01fe5a7b0332e86b (diff)
downloadopenembedded-core-contrib-de56a96a8bd6359c1dfcf9d1d5d70b4905373516.tar.gz
oeqa/targetcontrol: add missing arg to SimpleRemoteTarget.__init__
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
-rw-r--r--meta/lib/oeqa/targetcontrol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index 46442a8801..a8a4bf9eb8 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -227,8 +227,8 @@ class QemuTarget(BaseTarget):
class SimpleRemoteTarget(BaseTarget):
- def __init__(self, d):
- super(SimpleRemoteTarget, self).__init__(d)
+ def __init__(self, d, logger):
+ super(SimpleRemoteTarget, self).__init__(d, logger)
addr = d.getVar("TEST_TARGET_IP") or bb.fatal('Please set TEST_TARGET_IP with the IP address of the machine you want to run the tests on.')
self.ip = addr.split(":")[0]
try: