diff options
Diffstat (limited to 'meta/lib/oeqa/oetest.py')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 47ea3b259f..620617c4fb 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
@@ -19,6 +19,7 @@ except ImportError: | |||
19 | import logging | 19 | import logging |
20 | 20 | ||
21 | import oeqa.runtime | 21 | import oeqa.runtime |
22 | import oeqa.sdkext | ||
22 | from oeqa.utils.decorators import LogResults, gettag, getResults | 23 | from oeqa.utils.decorators import LogResults, gettag, getResults |
23 | 24 | ||
24 | logger = logging.getLogger("BitBake") | 25 | logger = logging.getLogger("BitBake") |
@@ -126,6 +127,9 @@ class oeSDKTest(oeTest): | |||
126 | def _run(self, cmd): | 127 | def _run(self, cmd): |
127 | return subprocess.check_output(". %s > /dev/null; %s;" % (self.tc.sdkenv, cmd), shell=True) | 128 | return subprocess.check_output(". %s > /dev/null; %s;" % (self.tc.sdkenv, cmd), shell=True) |
128 | 129 | ||
130 | class oeSDKExtTest(oeSDKTest): | ||
131 | pass | ||
132 | |||
129 | def getmodule(pos=2): | 133 | def getmodule(pos=2): |
130 | # stack returns a list of tuples containg frame information | 134 | # stack returns a list of tuples containg frame information |
131 | # First element of the list the is current frame, caller is 1 | 135 | # First element of the list the is current frame, caller is 1 |
@@ -400,7 +404,13 @@ class SDKTestContext(TestContext): | |||
400 | return [t for t in (self.d.getVar("TEST_SUITES_SDK", True) or \ | 404 | return [t for t in (self.d.getVar("TEST_SUITES_SDK", True) or \ |
401 | "auto").split() if t != "auto"] | 405 | "auto").split() if t != "auto"] |
402 | 406 | ||
403 | class SDKExtTestContext(TestContext): | 407 | class SDKExtTestContext(SDKTestContext): |
408 | def __init__(self, d, sdktestdir, sdkenv): | ||
409 | super(SDKExtTestContext, self).__init__(d, sdktestdir, sdkenv) | ||
410 | |||
411 | self.sdkextfilesdir = os.path.join(os.path.dirname(os.path.abspath( | ||
412 | oeqa.sdkext.__file__)), "files") | ||
413 | |||
404 | def _get_test_namespace(self): | 414 | def _get_test_namespace(self): |
405 | return "sdkext" | 415 | return "sdkext" |
406 | 416 | ||