summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/testimage.bbclass8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index dc163c7313..1557675eec 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -287,12 +287,18 @@ def testsdk_main(d):
287 self.sdkenv = sdkenv 287 self.sdkenv = sdkenv
288 self.imagefeatures = d.getVar("IMAGE_FEATURES", True).split() 288 self.imagefeatures = d.getVar("IMAGE_FEATURES", True).split()
289 self.distrofeatures = d.getVar("DISTRO_FEATURES", True).split() 289 self.distrofeatures = d.getVar("DISTRO_FEATURES", True).split()
290 manifest = os.path.join(d.getVar("SDK_MANIFEST", True)) 290 manifest = d.getVar("SDK_TARGET_MANIFEST", True)
291 try: 291 try:
292 with open(manifest) as f: 292 with open(manifest) as f:
293 self.pkgmanifest = f.read() 293 self.pkgmanifest = f.read()
294 except IOError as e: 294 except IOError as e:
295 bb.fatal("No package manifest file found. Did you build the sdk image?\n%s" % e) 295 bb.fatal("No package manifest file found. Did you build the sdk image?\n%s" % e)
296 hostmanifest = d.getVar("SDK_HOST_MANIFEST", True)
297 try:
298 with open(hostmanifest) as f:
299 self.hostpkgmanifest = f.read()
300 except IOError as e:
301 bb.fatal("No host package manifest file found. Did you build the sdk image?\n%s" % e)
296 302
297 # test context 303 # test context
298 tc = TestContext() 304 tc = TestContext()