diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/testsdk.py')
-rw-r--r-- | meta/lib/oeqa/sdk/testsdk.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/testsdk.py b/meta/lib/oeqa/sdk/testsdk.py index 518b09febb..52b702b6a2 100644 --- a/meta/lib/oeqa/sdk/testsdk.py +++ b/meta/lib/oeqa/sdk/testsdk.py | |||
@@ -114,7 +114,8 @@ class TestSDK(TestSDKBase): | |||
114 | host_pkg_manifest=host_pkg_manifest, **context_args) | 114 | host_pkg_manifest=host_pkg_manifest, **context_args) |
115 | 115 | ||
116 | try: | 116 | try: |
117 | tc.loadTests(self.context_executor_class.default_cases) | 117 | modules = (d.getVar("TESTSDK_SUITES") or "").split() |
118 | tc.loadTests(self.context_executor_class.default_cases, modules) | ||
118 | except Exception as e: | 119 | except Exception as e: |
119 | import traceback | 120 | import traceback |
120 | bb.fatal("Loading tests failed:\n%s" % traceback.format_exc()) | 121 | bb.fatal("Loading tests failed:\n%s" % traceback.format_exc()) |