From: Stefan Stanacar Date: Fri, 7 Mar 2014 11:34:05 +0000 (+0000) Subject: oeqa/targetcontrol: fix loading a controller using a class name X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~34210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47d2049d13ab71e0310e9eedaf307d6c3e530b44;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/targetcontrol: fix loading a controller using a class name This was wrong and if one would do TEST_TARGET = "SimpleRemoteTarget" instead of TEST_TARGET = "simpleremote" it would complain that there is no such controller when there is. Signed-off-by: Stefan Stanacar Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 17871f57073..873a66457a9 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py @@ -9,6 +9,7 @@ import shutil import subprocess import bb import traceback +import sys from oeqa.utils.sshcontrol import SSHControl from oeqa.utils.qemurunner import QemuRunner from oeqa.controllers.testtargetloader import TestTargetLoader @@ -25,7 +26,7 @@ def get_target_controller(d): # use the class name try: # is it a core class defined here? - controller = getattr(__name__, testtarget) + controller = getattr(sys.modules[__name__], testtarget) except AttributeError: # nope, perhaps a layer defined one try: