[oe-commits] [openembedded-core] 11/19: oeqa/runtime/dnf: Fix test error when static libs are enabled

git at git.openembedded.org git at git.openembedded.org
Tue Jun 5 22:42:27 UTC 2018


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

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

commit 1ad91eee225a86433869a96a23d08b30c554d1e8
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Jun 5 22:38:39 2018 +0000

    oeqa/runtime/dnf: Fix test error when static libs are enabled
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/cases/dnf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/cases/dnf.py b/meta/lib/oeqa/runtime/cases/dnf.py
index 7da31cb..67484bc 100644
--- a/meta/lib/oeqa/runtime/cases/dnf.py
+++ b/meta/lib/oeqa/runtime/cases/dnf.py
@@ -157,7 +157,7 @@ class DnfRepoTest(DnfTest):
         #check curl-dev is not installed adter removing all curl occurrences
         status, output = self.target.run('dnf list --installed | grep %s'% excludepkg, 1500)
         self.assertEqual(1, status, "%s was not removed,  is listed as installed"%excludepkg)
-        self.dnf_with_repo('install -y --exclude=%s curl*' % excludepkg)
+        self.dnf_with_repo('install -y --exclude=%s --exclude=curl-staticdev curl*' % excludepkg)
         #check curl-dev is not installed after being excluded
         status, output = self.target.run('dnf list --installed | grep %s'% excludepkg , 1500)
         self.assertEqual(1, status, "%s was not excluded, is listed as installed"%excludepkg)

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


More information about the Openembedded-commits mailing list