blob: ad08b777f235804dd40e6e0f2175230a7b98c812 [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):
Patrick Williamsdb4c27e2022-08-05 08:10:29 -050019 if not (self.tc.hasHostPackage("nativesdk-meson") or
20 self.tc.hasHostPackage("meson-native")):
Patrick Williams03907ee2022-05-01 06:28:52 -050021 raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson")
Brad Bishop19323692019-04-05 15:28:33 -040022
23 def test_epoxy(self):
24 with tempfile.TemporaryDirectory(prefix="epoxy", dir=self.tc.sdk_dir) as testdir:
25 tarball = self.fetch(testdir, self.td["DL_DIR"], "https://github.com/anholt/libepoxy/releases/download/1.5.3/libepoxy-1.5.3.tar.xz")
26
27 dirs = {}
28 dirs["source"] = os.path.join(testdir, "libepoxy-1.5.3")
29 dirs["build"] = os.path.join(testdir, "build")
30 dirs["install"] = os.path.join(testdir, "install")
31
Andrew Geisslerc9f78652020-09-18 14:11:35 -050032 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
Brad Bishop19323692019-04-05 15:28:33 -040033 self.assertTrue(os.path.isdir(dirs["source"]))
34 os.makedirs(dirs["build"])
35
Brad Bishopf3f93bb2019-10-16 14:33:32 -040036 log = self._run("meson -Degl=no -Dglx=no -Dx11=false {build} {source}".format(**dirs))
37 # Check that Meson thinks we're doing a cross build and not a native
38 self.assertIn("Build type: cross build", log)
Brad Bishop19323692019-04-05 15:28:33 -040039 self._run("ninja -C {build} -v".format(**dirs))
40 self._run("DESTDIR={install} ninja -C {build} -v install".format(**dirs))
41
42 self.check_elf(os.path.join(dirs["install"], "usr", "local", "lib", "libepoxy.so"))