blob: 3728855d245c110ea16e6e0136d40472f28c960e [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: MIT
5#
6
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007from oeqa.runtime.case import OERuntimeTestCase
8from oeqa.core.decorator.depends import OETestDepends
Brad Bishop977dc1a2019-02-06 16:01:43 -05009from oeqa.runtime.decorator.package import OEHasPackage
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010
11from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
12
13class BuildCpioTest(OERuntimeTestCase):
14
15 @classmethod
16 def setUpClass(cls):
Andrew Geissler82c905d2020-04-13 13:39:40 -050017 uri = 'https://downloads.yoctoproject.org/mirror/sources/cpio-2.13.tar.gz'
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018 cls.project = TargetBuildProject(cls.tc.target,
19 uri,
20 dl_dir = cls.tc.td['DL_DIR'])
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021
22 @classmethod
23 def tearDownClass(cls):
24 cls.project.clean()
25
Brad Bishop6e60e8b2018-02-01 10:27:11 -050026 @OETestDepends(['ssh.SSHTest.test_ssh'])
Brad Bishop977dc1a2019-02-06 16:01:43 -050027 @OEHasPackage(['gcc'])
28 @OEHasPackage(['make'])
29 @OEHasPackage(['autoconf'])
Brad Bishop6e60e8b2018-02-01 10:27:11 -050030 def test_cpio(self):
Brad Bishop977dc1a2019-02-06 16:01:43 -050031 self.project.download_archive()
Patrick Williams8e7b46e2023-05-01 14:19:06 -050032 self.project.run_configure('--disable-maintainer-mode')
33 # This sed is needed until
34 # https://git.savannah.gnu.org/cgit/cpio.git/commit/src/global.c?id=641d3f489cf6238bb916368d4ba0d9325a235afb
35 # is in a release.
36 self.project._run(r'sed -i -e "/char \*program_name/d" %s/src/global.c' % self.project.targetdir)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050037 self.project.run_make()
38 self.project.run_install()