diff options
-rw-r--r-- | meta/classes/testimage.bbclass | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 97d0380153..f2480fe085 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -281,6 +281,14 @@ def testsdk_main(d): | |||
281 | self.filesdir = os.path.join(os.path.dirname(os.path.abspath(oeqa.runtime.__file__)),"files") | 281 | self.filesdir = os.path.join(os.path.dirname(os.path.abspath(oeqa.runtime.__file__)),"files") |
282 | self.sdktestdir = sdktestdir | 282 | self.sdktestdir = sdktestdir |
283 | self.sdkenv = sdkenv | 283 | self.sdkenv = sdkenv |
284 | self.imagefeatures = d.getVar("IMAGE_FEATURES", True).split() | ||
285 | self.distrofeatures = d.getVar("DISTRO_FEATURES", True).split() | ||
286 | manifest = os.path.join(d.getVar("SDK_MANIFEST", True)) | ||
287 | try: | ||
288 | with open(manifest) as f: | ||
289 | self.pkgmanifest = f.read() | ||
290 | except IOError as e: | ||
291 | bb.fatal("No package manifest file found. Did you build the sdk image?\n%s" % e) | ||
284 | 292 | ||
285 | # test context | 293 | # test context |
286 | tc = TestContext() | 294 | tc = TestContext() |