All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ross Burton <ross.burton@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 01/16] oeqa/sdk: add test that CMake works
Date: Fri, 27 Jul 2018 16:32:33 +0100	[thread overview]
Message-ID: <20180727153248.22838-1-ross.burton@intel.com> (raw)

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



             reply	other threads:[~2018-07-27 15:32 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-27 15:32 Ross Burton [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180727153248.22838-1-ross.burton@intel.com \
    --to=ross.burton@intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.