blob: 7be734cb4f462a09e627601b8f9eec18aab66bbf [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):
Patrick Williams73bd93f2024-02-20 08:07:48 -060017 uri = 'https://downloads.yoctoproject.org/mirror/sources/cpio-2.15.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 Williams73bd93f2024-02-20 08:07:48 -060032 self.project.run_configure()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050033 self.project.run_make()
34 self.project.run_install()