From de56a96a8bd6359c1dfcf9d1d5d70b4905373516 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Fri, 17 Nov 2017 16:07:13 +0200 Subject: oeqa/targetcontrol: add missing arg to SimpleRemoteTarget.__init__ Signed-off-by: Markus Lehtonen --- meta/lib/oeqa/targetcontrol.py | 4 ++-- 1 file 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: -- cgit 1.2.3-korg