summaryrefslogtreecommitdiffstats
path: root/meta/classes/testimage.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/testimage.bbclass')
-rw-r--r--meta/classes/testimage.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index 1557675eec..4074ff7c4e 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -68,6 +68,8 @@ do_testsdk[lockfiles] += "${TESTIMAGELOCK}"
68 68
69def get_tests_list(d, type="runtime"): 69def get_tests_list(d, type="runtime"):
70 testsuites = d.getVar("TEST_SUITES", True).split() 70 testsuites = d.getVar("TEST_SUITES", True).split()
71 if type == "sdk":
72 testsuites = (d.getVar("TEST_SUITES_SDK", True) or "auto").split()
71 bbpath = d.getVar("BBPATH", True).split(':') 73 bbpath = d.getVar("BBPATH", True).split(':')
72 74
73 # This relies on lib/ under each directory in BBPATH being added to sys.path 75 # This relies on lib/ under each directory in BBPATH being added to sys.path
@@ -261,7 +263,7 @@ def testsdk_main(d):
261 # they won't be skipped even if they aren't suitable. 263 # they won't be skipped even if they aren't suitable.
262 # testslist is what we'll actually pass to the unittest loader 264 # testslist is what we'll actually pass to the unittest loader
263 testslist = get_tests_list(d, "sdk") 265 testslist = get_tests_list(d, "sdk")
264 testsrequired = [t for t in d.getVar("TEST_SUITES", True).split() if t != "auto"] 266 testsrequired = [t for t in (d.getVar("TEST_SUITES_SDK", True) or "auto").split() if t != "auto"]
265 267
266 sdktestdir = d.expand("${WORKDIR}/testimage-sdk/") 268 sdktestdir = d.expand("${WORKDIR}/testimage-sdk/")
267 bb.utils.remove(sdktestdir, True) 269 bb.utils.remove(sdktestdir, True)