blob: bd3b46d9ef0f36738dfa6e37242e73e0fa71c34e [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()
Andrew Geissler635e0e42020-08-21 15:58:33 -050032 self.project.run_configure('--disable-maintainer-mode',
33 'sed -i -e "/char \*program_name/d" src/global.c;')
Brad Bishop6e60e8b2018-02-01 10:27:11 -050034 self.project.run_make()
35 self.project.run_install()