[oe-commits] [openembedded-core] 27/68: oeqa/runtime/cases/rpm.py: skip if rpm not available

git at git.openembedded.org git at git.openembedded.org
Mon Jul 2 10:46:49 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch sumo
in repository openembedded-core.

commit 520c375d49df29453213c3cd4e2155e80e27a0ca
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Fri Jun 1 13:03:06 2018 +0800

    oeqa/runtime/cases/rpm.py: skip if rpm not available
    
    This test case should only run when rpm package is installed.
    So skip it if rpm package is not installed. This fixes:
    
      RESULTS - rpm.RpmBasicTest.test_rpm_help - Testcase 1059: FAILED
    
    (From OE-Core rev: bb909a60c04248d015d988e4454f0a11b1c287da)
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/lib/oeqa/runtime/cases/rpm.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/runtime/cases/rpm.py b/meta/lib/oeqa/runtime/cases/rpm.py
index 05b94c7..84c59a6 100644
--- a/meta/lib/oeqa/runtime/cases/rpm.py
+++ b/meta/lib/oeqa/runtime/cases/rpm.py
@@ -16,6 +16,7 @@ class RpmBasicTest(OERuntimeTestCase):
             cls.skipTest('Tests require image to be build from rpm')
 
     @OETestID(960)
+    @OEHasPackage(['rpm'])
     @OETestDepends(['ssh.SSHTest.test_ssh'])
     def test_rpm_help(self):
         status, output = self.target.run('rpm --help')

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list