blob: 385f8ccca83efa9e132671965866e89946f67d26 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
2# SPDX-License-Identifier: MIT
3#
4
Brad Bishop19323692019-04-05 15:28:33 -04005import os
6import subprocess
7import tempfile
8import unittest
9
10from oeqa.sdk.case import OESDKTestCase
11from oeqa.utils.subprocesstweak import errors_have_output
12errors_have_output()
13
14class EpoxyTest(OESDKTestCase):
15 """
16 Test that Meson builds correctly.
17 """
18 def setUp(self):
19 if not (self.tc.hasHostPackage("nativesdk-meson")):
20 raise unittest.SkipTest("GalculatorTest class: SDK doesn't contain Meson")
21
22 def test_epoxy(self):
23 with tempfile.TemporaryDirectory(prefix="epoxy", dir=self.tc.sdk_dir) as testdir:
24 tarball = self.fetch(testdir, self.td["DL_DIR"], "https://github.com/anholt/libepoxy/releases/download/1.5.3/libepoxy-1.5.3.tar.xz")
25
26 dirs = {}
27 dirs["source"] = os.path.join(testdir, "libepoxy-1.5.3")
28 dirs["build"] = os.path.join(testdir, "build")
29 dirs["install"] = os.path.join(testdir, "install")
30
Andrew Geisslerc9f78652020-09-18 14:11:35 -050031 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
Brad Bishop19323692019-04-05 15:28:33 -040032 self.assertTrue(os.path.isdir(dirs["source"]))
33 os.makedirs(dirs["build"])
34
Brad Bishopf3f93bb2019-10-16 14:33:32 -040035 log = self._run("meson -Degl=no -Dglx=no -Dx11=false {build} {source}".format(**dirs))
36 # Check that Meson thinks we're doing a cross build and not a native
37 self.assertIn("Build type: cross build", log)
Brad Bishop19323692019-04-05 15:28:33 -040038 self._run("ninja -C {build} -v".format(**dirs))
39 self._run("DESTDIR={install} ninja -C {build} -v install".format(**dirs))
40
41 self.check_elf(os.path.join(dirs["install"], "usr", "local", "lib", "libepoxy.so"))