summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/testimage.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index 898248992c..8ffaeab284 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -205,7 +205,6 @@ def testimage_main(d):
205 import shutil 205 import shutil
206 206
207 from bb.utils import export_proxies 207 from bb.utils import export_proxies
208 from oeqa.core.utils.misc import updateTestData
209 from oeqa.runtime.context import OERuntimeTestContext 208 from oeqa.runtime.context import OERuntimeTestContext
210 from oeqa.runtime.context import OERuntimeTestContextExecutor 209 from oeqa.runtime.context import OERuntimeTestContextExecutor
211 from oeqa.core.target.qemu import supported_fstypes 210 from oeqa.core.target.qemu import supported_fstypes
@@ -245,7 +244,8 @@ def testimage_main(d):
245 244
246 # Some variables need to be updates (mostly paths) with the 245 # Some variables need to be updates (mostly paths) with the
247 # ones of the current environment because some tests require them. 246 # ones of the current environment because some tests require them.
248 updateTestData(d, td, d.getVar('TESTIMAGE_UPDATE_VARS').split()) 247 for var in d.getVar('TESTIMAGE_UPDATE_VARS').split():
248 td[var] = d.getVar(var)
249 249
250 image_manifest = "%s.manifest" % image_name 250 image_manifest = "%s.manifest" % image_name
251 image_packages = OERuntimeTestContextExecutor.readPackagesManifest(image_manifest) 251 image_packages = OERuntimeTestContextExecutor.readPackagesManifest(image_manifest)