diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/buildlzip.py')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/buildlzip.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildlzip.py b/meta/lib/oeqa/runtime/cases/buildlzip.py new file mode 100644 index 0000000000..ca3fead2e4 --- /dev/null +++ b/meta/lib/oeqa/runtime/cases/buildlzip.py | |||
@@ -0,0 +1,34 @@ | |||
1 | from oeqa.runtime.case import OERuntimeTestCase | ||
2 | from oeqa.core.decorator.depends import OETestDepends | ||
3 | from oeqa.core.decorator.oeid import OETestID | ||
4 | from oeqa.core.decorator.data import skipIfNotFeature | ||
5 | |||
6 | from oeqa.runtime.utils.targetbuildproject import TargetBuildProject | ||
7 | |||
8 | class BuildLzipTest(OERuntimeTestCase): | ||
9 | |||
10 | @classmethod | ||
11 | def setUpClass(cls): | ||
12 | uri = 'http://downloads.yoctoproject.org/mirror/sources' | ||
13 | uri = '%s/lzip-1.19.tar.gz' % uri | ||
14 | cls.project = TargetBuildProject(cls.tc.target, | ||
15 | uri, | ||
16 | dl_dir = cls.tc.td['DL_DIR']) | ||
17 | cls.project.download_archive() | ||
18 | |||
19 | @classmethod | ||
20 | def tearDownClass(cls): | ||
21 | cls.project.clean() | ||
22 | |||
23 | @OETestID(206) | ||
24 | @skipIfNotFeature('tools-sdk', | ||
25 | 'Test requires tools-sdk to be in IMAGE_FEATURES') | ||
26 | @OETestDepends(['ssh.SSHTest.test_ssh']) | ||
27 | def test_lzip(self): | ||
28 | self.project.run_configure() | ||
29 | self.project.run_make() | ||
30 | self.project.run_install() | ||
31 | |||
32 | @classmethod | ||
33 | def tearDownClass(self): | ||
34 | self.project.clean() | ||