Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | # |
| 4 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 5 | import os |
| 6 | import subprocess |
| 7 | import tempfile |
| 8 | import unittest |
| 9 | |
| 10 | from oeqa.sdk.case import OESDKTestCase |
| 11 | from oeqa.utils.subprocesstweak import errors_have_output |
| 12 | errors_have_output() |
| 13 | |
| 14 | class 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 Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 31 | subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 32 | self.assertTrue(os.path.isdir(dirs["source"])) |
| 33 | os.makedirs(dirs["build"]) |
| 34 | |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 35 | 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 Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 38 | 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")) |