[oe-commits] Stefan Stanacar : lib/oeqa: use the new manifest file for determining if a package is installed

git at git.openembedded.org git at git.openembedded.org
Tue Dec 3 12:53:32 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: f57c83fc33583c140f668946f3f3e79b960aa9ee
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f57c83fc33583c140f668946f3f3e79b960aa9ee

Author: Stefan Stanacar <stefanx.stanacar at intel.com>
Date:   Thu Nov 28 15:27:00 2013 +0200

lib/oeqa: use the new manifest file for determining if a package is installed

Use the new manifest file instead of ${WORKDIR}/installed_pkgs.txt for determining
if an image has a certain package, because installed_pkgs.txt goes away with rm_work
enabled.
We can't use the IMAGE_MANIFEST var for the file path because that relies on IMAGE_NAME which
changes at every run (because of date), so we use the link which points to the last
one built.

[ YOCTO #5072 ]

Signed-off-by: Stefan Stanacar <stefanx.stanacar at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/oetest.py | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py
index 3bb3589..9566150 100644
--- a/meta/lib/oeqa/oetest.py
+++ b/meta/lib/oeqa/oetest.py
@@ -56,17 +56,11 @@ class oeTest(unittest.TestCase):
 
     @classmethod
     def hasPackage(self, pkg):
-
-        pkgfile = os.path.join(oeTest.tc.d.getVar("WORKDIR", True), "installed_pkgs.txt")
-
-        with open(pkgfile) as f:
-            data = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
-            match = re.search(pkg, data)
-            data.close()
-
-        if match:
+        manifest = os.path.join(oeTest.tc.d.getVar("DEPLOY_DIR_IMAGE", True), oeTest.tc.d.getVar("IMAGE_LINK_NAME", True) + ".manifest")
+        with open(manifest) as f:
+            data = f.read()
+        if re.search(pkg, data):
             return True
-
         return False
 
     @classmethod



More information about the Openembedded-commits mailing list