summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/cases/autotools.py
blob: 3f51854e3d12694621c7b2c23f855e3ec2721839 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#

import os
import tempfile
import subprocess
import unittest

from oeqa.sdk.case import OESDKTestCase
from oeqa.utils.subprocesstweak import errors_have_output
errors_have_output()

class AutotoolsTest(OESDKTestCase):
    """
    Check that autotools will cross-compile correctly.
    """
    def setUp(self):
        libc = self.td.get("TCLIBC")
        if libc in [ 'newlib' ]:
            raise unittest.SkipTest("AutotoolsTest class: SDK doesn't contain a supported C library")

    def test_cpio(self):
        from oe.utils import parallel_make_value
        pmv = parallel_make_value((self.td.get('PARALLEL_MAKE') or '').split())

        with tempfile.TemporaryDirectory(prefix="cpio-", dir=self.tc.sdk_dir) as testdir:
            tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftp.gnu.org/gnu/cpio/cpio-2.15.tar.gz")

            opts = {}
            opts["source"] = os.path.join(testdir, "cpio-2.15")
            opts["build"] = os.path.join(testdir, "build")
            opts["install"] = os.path.join(testdir, "install")
            opts["parallel_make"] = "-j %d" % (pmv) if pmv else ""

            subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
            self.assertTrue(os.path.isdir(opts["source"]))
            os.makedirs(opts["build"])

            self._run("cd {build} && {source}/configure CFLAGS='-std=gnu17 -Dbool=int -Dtrue=1 -Dfalse=0 -Wno-error=implicit-function-declaration' $CONFIGURE_FLAGS".format(**opts))

            # Check that configure detected the target correctly
            with open(os.path.join(opts["build"], "config.log")) as f:
                host_sys = self.td["HOST_SYS"]
                self.assertIn(f"host_alias='{host_sys}'\n", f.readlines())

            self._run("cd {build} && make CFLAGS='-std=gnu17 -Dbool=int -Dtrue=1 -Dfalse=0 -Wno-error=implicit-function-declaration' {parallel_make}".format(**opts))
            self._run("cd {build} && make install DESTDIR={install}".format(**opts))

            self.check_elf(os.path.join(opts["install"], "usr", "local", "bin", "cpio"))