summaryrefslogtreecommitdiff
path: root/poky/meta/lib/oeqa/sdk/buildtools-cases/build.py
blob: 5a17ab98c6c4e3643fb95f51e5808875c65b0e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# SPDX-License-Identifier: MIT
#

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

class BuildTests(OESDKTestCase):
    """
    Verify that bitbake can build virtual/libc inside the buildtools.
    """
    def test_libc(self):
        with tempfile.TemporaryDirectory(prefix='bitbake-build-', dir=self.tc.sdk_dir) as testdir:
            corebase = self.td['COREBASE']

            self._run('. %s/oe-init-build-env %s' % (corebase, testdir))
            with open(os.path.join(testdir, 'conf', 'local.conf'), 'ta') as conf:
                conf.write('\n')
                conf.write('DL_DIR = "%s"\n' % self.td['DL_DIR'])

            self._run('. %s/oe-init-build-env %s && bitbake virtual/libc' % (corebase, testdir))