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 15:51:03 +0000 |
commit | 01a420dc9c0c04c793bbf5824db7c2b9d7c9de9b (patch) | |
tree | 205234d31da1e5f343840ef2eb9cfb18d8d33840 /meta/lib | |
parent | e4cf46f240dda6263ba3ba14cd63087cce166f1c (diff) | |
download | openembedded-core-01a420dc9c0c04c793bbf5824db7c2b9d7c9de9b.tar.gz openembedded-core-01a420dc9c0c04c793bbf5824db7c2b9d7c9de9b.tar.bz2 openembedded-core-01a420dc9c0c04c793bbf5824db7c2b9d7c9de9b.zip |
get_test_suites: Add sdkext type for load test suites.
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-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'): if type == "sdk": testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split() + elif type == "sdkext": + testsuites = (d.getVar("TEST_SUITES_SDKEXT", True) or "auto").split() else: manifests = (d.getVar("TEST_SUITES_MANIFEST", True) or '').split() if manifests: |