diff options
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 17871f5707..873a66457a 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py | |||
@@ -9,6 +9,7 @@ import shutil | |||
9 | import subprocess | 9 | import subprocess |
10 | import bb | 10 | import bb |
11 | import traceback | 11 | import traceback |
12 | import sys | ||
12 | from oeqa.utils.sshcontrol import SSHControl | 13 | from oeqa.utils.sshcontrol import SSHControl |
13 | from oeqa.utils.qemurunner import QemuRunner | 14 | from oeqa.utils.qemurunner import QemuRunner |
14 | from oeqa.controllers.testtargetloader import TestTargetLoader | 15 | from oeqa.controllers.testtargetloader import TestTargetLoader |
@@ -25,7 +26,7 @@ def get_target_controller(d): | |||
25 | # use the class name | 26 | # use the class name |
26 | try: | 27 | try: |
27 | # is it a core class defined here? | 28 | # is it a core class defined here? |
28 | controller = getattr(__name__, testtarget) | 29 | controller = getattr(sys.modules[__name__], testtarget) |
29 | except AttributeError: | 30 | except AttributeError: |
30 | # nope, perhaps a layer defined one | 31 | # nope, perhaps a layer defined one |
31 | try: | 32 | try: |