mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 03:49:32 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
2ecc319690
commit
90590ab047
@@ -271,6 +271,8 @@ def get_test_suites(d, type='runtime'):
|
|||||||
|
|
||||||
if type == "sdk":
|
if type == "sdk":
|
||||||
testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split()
|
testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split()
|
||||||
|
elif type == "sdkext":
|
||||||
|
testsuites = (d.getVar("TEST_SUITES_SDKEXT", True) or "auto").split()
|
||||||
else:
|
else:
|
||||||
manifests = (d.getVar("TEST_SUITES_MANIFEST", True) or '').split()
|
manifests = (d.getVar("TEST_SUITES_MANIFEST", True) or '').split()
|
||||||
if manifests:
|
if manifests:
|
||||||
|
|||||||
Reference in New Issue
Block a user