diff options
-rw-r--r-- | meta/lib/oeqa/runtime/context.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index f0f6e62944..bc8abd0c4e 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py @@ -76,13 +76,13 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): help="Qemu boot configuration, only needed when target_type is QEMU.") @staticmethod - def getTarget(target_type, target_ip, server_ip, **kwargs): + def getTarget(target_type, logger, target_ip, server_ip, **kwargs): target = None if target_type == 'simpleremote': - target = OESSHTarget(target_ip, server_ip, kwargs) + target = OESSHTarget(logger, target_ip, server_ip, **kwargs) elif target_type == 'qemu': - target = OEQemuTarget(target_ip, server_ip, kwargs) + target = OEQemuTarget(logger, target_ip, server_ip, **kwargs) else: # TODO: Implement custom target module loading raise TypeError("target_type %s isn't supported" % target_type) |