mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
oeqa/runtime/dnf: Fix test error when static libs are enabled
The test works by excluding curl-dev which curl-staticdev depends upon. When static libraries aren't disabled, this leads to an odd looking test failure. Simply exclude curl-staticdev as well in case its enabled to make sure the test always works. (From OE-Core rev: 0a77f4b680332a692abf0231e397fab44c59bde3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
21a9066b1b
commit
c1d72abe5e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user