summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/buildlzip.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/buildlzip.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/buildlzip.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildlzip.py b/meta/lib/oeqa/runtime/cases/buildlzip.py
index ca3fead2e4..5b455a0790 100644
--- a/meta/lib/oeqa/runtime/cases/buildlzip.py
+++ b/meta/lib/oeqa/runtime/cases/buildlzip.py
@@ -1,7 +1,7 @@
1from oeqa.runtime.case import OERuntimeTestCase 1from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends 2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.core.decorator.oeid import OETestID 3from oeqa.core.decorator.oeid import OETestID
4from oeqa.core.decorator.data import skipIfNotFeature 4from oeqa.runtime.decorator.package import OEHasPackage
5 5
6from oeqa.runtime.utils.targetbuildproject import TargetBuildProject 6from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
7 7
@@ -14,21 +14,19 @@ class BuildLzipTest(OERuntimeTestCase):
14 cls.project = TargetBuildProject(cls.tc.target, 14 cls.project = TargetBuildProject(cls.tc.target,
15 uri, 15 uri,
16 dl_dir = cls.tc.td['DL_DIR']) 16 dl_dir = cls.tc.td['DL_DIR'])
17 cls.project.download_archive()
18 17
19 @classmethod 18 @classmethod
20 def tearDownClass(cls): 19 def tearDownClass(cls):
21 cls.project.clean() 20 cls.project.clean()
22 21
23 @OETestID(206) 22 @OETestID(206)
24 @skipIfNotFeature('tools-sdk',
25 'Test requires tools-sdk to be in IMAGE_FEATURES')
26 @OETestDepends(['ssh.SSHTest.test_ssh']) 23 @OETestDepends(['ssh.SSHTest.test_ssh'])
24 @OEHasPackage(['gcc'])
25 @OEHasPackage(['make'])
26 @OEHasPackage(['autoconf'])
27 def test_lzip(self): 27 def test_lzip(self):
28 self.project.download_archive()
28 self.project.run_configure() 29 self.project.run_configure()
29 self.project.run_make() 30 self.project.run_make()
30 self.project.run_install() 31 self.project.run_install()
31 32
32 @classmethod
33 def tearDownClass(self):
34 self.project.clean()