summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/buildcvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/buildcvs.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/buildcvs.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildcvs.py b/meta/lib/oeqa/runtime/cases/buildcvs.py
new file mode 100644
index 0000000000..341eb4959d
--- /dev/null
+++ b/meta/lib/oeqa/runtime/cases/buildcvs.py
@@ -0,0 +1,35 @@
1from 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 BuildCvsTest(OERuntimeTestCase):
9
10 @classmethod
11 def setUpClass(cls):
12 uri = 'http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13'
13 uri = '%s/cvs-1.12.13.tar.bz2' % 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(205)
24 @skipIfNotFeature('tools-sdk',
25 'Test requires tools-sdk to be in IMAGE_FEATURES')
26 @OETestDepends(['ssh.SSHTest.test_ssh'])
27 def test_cvs(self):
28 self.assertEqual(self.project.run_configure(), 0,
29 msg="Running configure failed")
30
31 self.assertEqual(self.project.run_make(), 0,
32 msg="Running make failed")
33
34 self.assertEqual(self.project.run_install(), 0,
35 msg="Running make install failed")