All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/16] oeqa/sdk: add test that CMake works
@ 2018-07-27 15:32 Ross Burton
  2018-07-27 15:32 ` [PATCH 02/16] libidn2: add new version Ross Burton
                   ` (15 more replies)
  0 siblings, 16 replies; 22+ messages in thread
From: Ross Burton @ 2018-07-27 15:32 UTC (permalink / raw)
  To: openembedded-core

Add a new SDK testcase that builds assimp, a project that uses cmake.

Signed-off-by: Ross Burton <ross.burton@intel.com>
---
 meta/lib/oeqa/sdk/cases/assimp.py | 65 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)
 create mode 100644 meta/lib/oeqa/sdk/cases/assimp.py

diff --git a/meta/lib/oeqa/sdk/cases/assimp.py b/meta/lib/oeqa/sdk/cases/assimp.py
new file mode 100644
index 00000000000..8f5b0eb63a2
--- /dev/null
+++ b/meta/lib/oeqa/sdk/cases/assimp.py
@@ -0,0 +1,65 @@
+import os, subprocess, unittest
+import bb
+from oeqa.sdk.case import OESDKTestCase
+from oeqa.sdk.utils.sdkbuildproject import SDKBuildProject
+
+from oeqa.utils.subprocesstweak import errors_have_output
+errors_have_output()
+
+class BuildAssimp(OESDKTestCase):
+    """
+    Test case to build a project using cmake.
+    """
+
+    td_vars = ['DATETIME', 'TARGET_OS', 'TARGET_ARCH']
+
+    @classmethod
+    def setUpClass(self):
+        if not (self.tc.hasHostPackage("nativesdk-cmake") or
+                self.tc.hasHostPackage("cmake-native")):
+            raise unittest.SkipTest("Needs cmake")
+
+    def fetch(self, workdir, dl_dir, url, archive=None):
+        if not archive:
+            from urllib.parse import urlparse
+            archive = os.path.basename(urlparse(url).path)
+
+        if dl_dir:
+            tarball = os.path.join(dl_dir, archive)
+            if os.path.exists(tarball):
+                return tarball
+
+        tarball = os.path.join(workdir, archive)
+        subprocess.check_output(["wget", "-O", tarball, url])
+        return tarball
+
+    def test_assimp(self):
+        import tempfile
+        import oe.qa, oe.elf
+
+        with tempfile.TemporaryDirectory(prefix="assimp", dir=self.tc.sdk_dir) as testdir:
+            dl_dir = self.td.get('DL_DIR', None)
+            tarball = self.fetch(testdir, dl_dir, "https://github.com/assimp/assimp/archive/v4.1.0.tar.gz")
+            subprocess.check_output(["tar", "xf", tarball, "-C", testdir])
+
+            sourcedir = os.path.join(testdir, "assimp-4.1.0") 
+            builddir = os.path.join(testdir, "build")
+            installdir = os.path.join(testdir, "install")
+            bb.utils.mkdirhier(builddir)
+
+            self._run("cd %s && cmake %s " % (builddir, sourcedir))
+            self._run("cmake --build %s -- -j" % builddir)
+            self._run("cmake --build %s --target install -- DESTDIR=%s" % (builddir, installdir))
+
+            elf = oe.qa.ELFFile(os.path.join(installdir, "usr", "local", "lib", "libassimp.so.4.1.0"))
+            elf.open()
+
+            (machine, osabi, abiversion, littleendian, bits) = \
+                oe.elf.machine_dict(None)[self.td['TARGET_OS']][self.td['TARGET_ARCH']]
+            self.assertEqual(machine, elf.machine())
+            self.assertEqual(bits, elf.abiSize())
+            self.assertEqual(littleendian, elf.isLittleEndian())
+
+    @classmethod
+    def tearDownClass(self):
+        self.project.clean()
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2018-08-02 18:50 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-27 15:32 [PATCH 01/16] oeqa/sdk: add test that CMake works Ross Burton
2018-07-27 15:32 ` [PATCH 02/16] libidn2: add new version Ross Burton
2018-08-02 18:50   ` Khem Raj
2018-07-27 15:32 ` [PATCH 03/16] gnutls: fix libidn dependencies Ross Burton
2018-07-27 15:32 ` [PATCH 04/16] curl: enable libidn Ross Burton
2018-07-27 15:32 ` [PATCH 05/16] ovmf: remove ossp-util from DEPENDS Ross Burton
2018-07-27 15:32 ` [PATCH 06/16] ossp-uuid: remove Ross Burton
2018-07-27 15:32 ` [PATCH 07/16] dbus-glib: merge bb and inc Ross Burton
2018-07-27 15:32 ` [PATCH 08/16] update-rc.d: move to git.yoctoproject.org Ross Burton
2018-07-27 15:32 ` [PATCH 09/16] unzip: fix symlink problem Ross Burton
2018-07-27 15:32 ` [PATCH 10/16] usbutils: upgrade to 010 Ross Burton
2018-07-27 15:32 ` [PATCH 11/16] cups: depend on libusb1 Ross Burton
2018-07-27 15:32 ` [PATCH 12/16] libusb-compat: remove Ross Burton
2018-07-27 15:32 ` [PATCH 13/16] gccmakedep: remove Ross Burton
2018-07-27 15:32 ` [PATCH 14/16] icon-naming-utils: remove Ross Burton
2018-07-27 15:32 ` [PATCH 15/16] oeqa/runtime/scanelf: remove Ross Burton
2018-07-27 15:32 ` [PATCH 16/16] pax-utils: remove Ross Burton
2018-07-27 16:01   ` Christopher Larson
2018-07-27 16:13     ` Burton, Ross
2018-07-27 17:52   ` Khem Raj
2018-07-27 17:58     ` Burton, Ross
2018-07-27 16:03 ` ✗ patchtest: failure for "oeqa/sdk: add test that CMake ..." and 15 more Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.