blob: 79b22d04dd0f06f262953855bfca0ded88db918e [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.core.decorator.oeid import OETestID
4from oeqa.core.decorator.data import skipIfNotFeature
5
6from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
7
8class BuildCpioTest(OERuntimeTestCase):
9
10 @classmethod
11 def setUpClass(cls):
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012 uri = 'https://downloads.yoctoproject.org/mirror/sources/cpio-2.12.tar.gz'
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013 cls.project = TargetBuildProject(cls.tc.target,
14 uri,
15 dl_dir = cls.tc.td['DL_DIR'])
16 cls.project.download_archive()
17
18 @classmethod
19 def tearDownClass(cls):
20 cls.project.clean()
21
22 @OETestID(205)
23 @skipIfNotFeature('tools-sdk',
24 'Test requires tools-sdk to be in IMAGE_FEATURES')
25 @OETestDepends(['ssh.SSHTest.test_ssh'])
26 def test_cpio(self):
27 self.project.run_configure()
28 self.project.run_make()
29 self.project.run_install()