diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-01-28 15:40:13 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:22 +0000 |
commit | 90590ab047f1a4968f69f4b68fc45998d324ebf3 (patch) | |
tree | 168090f3166c29f2d513c77056a1ea56f01d470e /meta/lib/oeqa/oetest.py | |
parent | 2ecc319690cef3725c6830e7991c2637ac18087c (diff) | |
download | poky-90590ab047f1a4968f69f4b68fc45998d324ebf3.tar.gz |
get_test_suites: Add sdkext type for load test suites.
(From OE-Core rev: 01a420dc9c0c04c793bbf5824db7c2b9d7c9de9b)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/oetest.py')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 18b2209656..6470129180 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
@@ -271,6 +271,8 @@ def get_test_suites(d, type='runtime'): | |||
271 | 271 | ||
272 | if type == "sdk": | 272 | if type == "sdk": |
273 | testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split() | 273 | testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split() |
274 | elif type == "sdkext": | ||
275 | testsuites = (d.getVar("TEST_SUITES_SDKEXT", True) or "auto").split() | ||
274 | else: | 276 | else: |
275 | manifests = (d.getVar("TEST_SUITES_MANIFEST", True) or '').split() | 277 | manifests = (d.getVar("TEST_SUITES_MANIFEST", True) or '').split() |
276 | if manifests: | 278 | if manifests: |