diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/buildcvs.py')
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/buildcvs.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildcvs.py b/meta/lib/oeqa/runtime/cases/buildcvs.py index 341eb4959d..c3f3acc736 100644 --- a/meta/lib/oeqa/runtime/cases/buildcvs.py +++ b/meta/lib/oeqa/runtime/cases/buildcvs.py | |||
| @@ -25,11 +25,6 @@ class BuildCvsTest(OERuntimeTestCase): | |||
| 25 | 'Test requires tools-sdk to be in IMAGE_FEATURES') | 25 | 'Test requires tools-sdk to be in IMAGE_FEATURES') |
| 26 | @OETestDepends(['ssh.SSHTest.test_ssh']) | 26 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
| 27 | def test_cvs(self): | 27 | def test_cvs(self): |
| 28 | self.assertEqual(self.project.run_configure(), 0, | 28 | self.project.run_configure() |
| 29 | msg="Running configure failed") | 29 | self.project.run_make() |
| 30 | 30 | self.project.run_install() | |
| 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") | ||
