Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame] | 2 | # Copyright OpenEmbedded Contributors |
| 3 | # |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 4 | # SPDX-License-Identifier: MIT |
| 5 | # |
| 6 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 7 | import os |
| 8 | import subprocess |
| 9 | import tempfile |
| 10 | import unittest |
| 11 | |
| 12 | from oeqa.sdk.case import OESDKTestCase |
| 13 | from oeqa.utils.subprocesstweak import errors_have_output |
| 14 | errors_have_output() |
| 15 | |
| 16 | class EpoxyTest(OESDKTestCase): |
| 17 | """ |
| 18 | Test that Meson builds correctly. |
| 19 | """ |
| 20 | def setUp(self): |
Patrick Williams | db4c27e | 2022-08-05 08:10:29 -0500 | [diff] [blame] | 21 | if not (self.tc.hasHostPackage("nativesdk-meson") or |
| 22 | self.tc.hasHostPackage("meson-native")): |
Patrick Williams | 03907ee | 2022-05-01 06:28:52 -0500 | [diff] [blame] | 23 | raise unittest.SkipTest("EpoxyTest class: SDK doesn't contain Meson") |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 24 | |
| 25 | def test_epoxy(self): |
| 26 | with tempfile.TemporaryDirectory(prefix="epoxy", dir=self.tc.sdk_dir) as testdir: |
| 27 | tarball = self.fetch(testdir, self.td["DL_DIR"], "https://github.com/anholt/libepoxy/releases/download/1.5.3/libepoxy-1.5.3.tar.xz") |
| 28 | |
| 29 | dirs = {} |
| 30 | dirs["source"] = os.path.join(testdir, "libepoxy-1.5.3") |
| 31 | dirs["build"] = os.path.join(testdir, "build") |
| 32 | dirs["install"] = os.path.join(testdir, "install") |
| 33 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 34 | subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 35 | self.assertTrue(os.path.isdir(dirs["source"])) |
| 36 | os.makedirs(dirs["build"]) |
| 37 | |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 38 | log = self._run("meson --warnlevel 1 -Degl=no -Dglx=no -Dx11=false {build} {source}".format(**dirs)) |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 39 | # Check that Meson thinks we're doing a cross build and not a native |
| 40 | self.assertIn("Build type: cross build", log) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 41 | self._run("ninja -C {build} -v".format(**dirs)) |
| 42 | self._run("DESTDIR={install} ninja -C {build} -v install".format(**dirs)) |
| 43 | |
| 44 | self.check_elf(os.path.join(dirs["install"], "usr", "local", "lib", "libepoxy.so")) |